Skip to content
This repository was archived by the owner on Aug 7, 2023. It is now read-only.

Commit 3d9ec4d

Browse files
authored
Merge pull request #144 from AtomLinter/update-ci
Update CI configuration
2 parents 0fa23e5 + ee607c6 commit 3d9ec4d

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ matrix:
1313
env: ATOM_CHANNEL=stable
1414

1515
### Generic setup follows ###
16-
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
16+
script:
17+
- curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh
18+
- chmod u+x build-package.sh
19+
- ./build-package.sh
1720

1821
notifications:
1922
email:

circle.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
test:
1+
dependencies:
22
override:
3-
- curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh
3+
- curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh
4+
- chmod u+x build-package.sh
45

5-
dependencies:
6+
test:
67
override:
7-
# If nothing is put here, CircleCI will run `npm install` using the system Node.js
8-
- echo "Managed in the script"
8+
- ./build-package.sh

0 commit comments

Comments
 (0)