This repository was archived by the owner on Aug 7, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +42
-36
lines changed Expand file tree Collapse file tree 3 files changed +42
-36
lines changed Original file line number Diff line number Diff line change
1
+ # Project specific config
2
+ os :
3
+ - linux
4
+ - osx
5
+
6
+ env :
7
+ matrix :
8
+ - ATOM_CHANNEL=stable
9
+ - ATOM_CHANNEL=beta
10
+
11
+ # Installed for linting the project
12
+ language : node_js
13
+ node_js : " 6"
14
+
15
+ # Generic setup follows
16
+ script : ' curl -Ls https://github.com/Arcanemagus/ci/raw/atomlinter/build-package.sh | sh'
17
+
1
18
notifications :
2
19
email :
3
20
on_success : never
@@ -7,25 +24,11 @@ branches:
7
24
only :
8
25
- master
9
26
10
- script : ' curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
11
-
12
27
git :
13
28
depth : 10
14
29
15
30
sudo : false
16
31
17
- os :
18
- - linux
19
- - osx
20
-
21
- env :
22
- global :
23
- - APM_TEST_PACKAGES=""
24
-
25
- matrix :
26
- - ATOM_CHANNEL=stable
27
- - ATOM_CHANNEL=beta
28
-
29
32
addons :
30
33
apt :
31
34
packages :
Original file line number Diff line number Diff line change 1
- version : " {build}"
2
- os : Windows Server 2012 R2
1
+ # Project specific config
2
+ environment :
3
+ matrix :
4
+ - ATOM_CHANNEL : stable
5
+ - ATOM_CHANNEL : beta
6
+
7
+ install :
8
+ # Install Node.js to run any configured linters
9
+ - ps : Install-Product node 6
10
+
11
+ # Generic setup follows
12
+ build_script :
13
+ - ps : iex ((new-object net.webclient).DownloadString('https://github.com/Arcanemagus/ci/raw/atomlinter/build-package.ps1'))
14
+
3
15
branches :
4
16
only :
5
17
- master
18
+
19
+ version : " {build}"
20
+ platform : x64
21
+ clone_depth : 10
22
+ skip_tags : true
6
23
test : off
7
24
deploy : off
8
-
9
- install :
10
- - appveyor DownloadFile https://atom.io/download/windows -FileName AtomSetup.exe
11
- - AtomSetup.exe /silent
12
-
13
- build_script :
14
- - cd %APPVEYOR_BUILD_FOLDER%
15
- - SET PATH=%LOCALAPPDATA%\atom\bin;%PATH%
16
- - atom -v
17
- - apm -v
18
- - apm clean
19
- - apm install
20
- - apm test
Original file line number Diff line number Diff line change 1
1
dependencies :
2
- pre :
3
- # Force updating wget due to the current containers being too out of date
4
- - sudo apt-get update
5
- - sudo apt-get install wget
6
2
override :
7
- - wget -O atom-amd64.deb https://atom.io/download/deb
8
- # - sudo apt-get update # Cut out until wget is fixed on the containers
3
+ - curl -L https://atom.io/download/deb -o atom-amd64.deb
9
4
- sudo dpkg --install atom-amd64.deb || true
5
+ - sudo apt-get update
10
6
- sudo apt-get -f install
11
7
- apm install
12
8
test :
13
9
override :
14
10
- atom -v
15
11
- apm -v
16
- - npm test
17
12
- apm test
13
+
14
+ machine :
15
+ node :
16
+ version : 6.1.0
You can’t perform that action at this time.
0 commit comments