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

Commit 6392cf5

Browse files
authored
Merge pull request #67 from AtomLinter/update-ci
Update the CI configuration
2 parents da9c9c5 + c344ad1 commit 6392cf5

File tree

3 files changed

+3
-27
lines changed

3 files changed

+3
-27
lines changed

.travis.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,22 @@
11
### Project specific config ###
22

33
# Installed for linting the project
4-
language: node_js
4+
language: generic
55

66
matrix:
77
include:
88
- os: linux
9-
node_js: "6"
109
env: ATOM_CHANNEL=stable
1110

1211
- os: linux
13-
node_js: "6"
1412
env: ATOM_CHANNEL=beta
1513

1614
- os: osx
17-
node_js: "6"
1815
env: ATOM_CHANNEL=stable
1916

20-
env:
21-
global:
22-
- APM_TEST_PACKAGES=""
23-
- ATOM_LINT_WITH_BUNDLED_NODE="false"
24-
2517
### Generic setup follows ###
2618
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
2719

28-
# Needed to disable the auto-install step running `npm install`
29-
install: true
30-
3120
notifications:
3221
email:
3322
on_success: never

appveyor.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,9 @@
11
### Project specific config ###
22
environment:
3-
APM_TEST_PACKAGES:
4-
ATOM_LINT_WITH_BUNDLED_NODE: "false"
5-
63
matrix:
74
- ATOM_CHANNEL: stable
85
- ATOM_CHANNEL: beta
96

10-
install:
11-
# Install Node.js to run any configured linters
12-
- ps: Install-Product node 6
13-
147
### Generic setup follows ###
158
build_script:
169
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/atom/ci/master/build-package.ps1'))

circle.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
11
test:
22
override:
3-
- curl -Ls https://github.com/Arcanemagus/ci/raw/atomlinter/build-package.sh | sh
3+
- curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh
44

55
dependencies:
66
override:
7+
# If nothing is put here, CircleCI will run `npm install` using the system Node.js
78
- echo "Managed in the script"
8-
9-
machine:
10-
node:
11-
version: 6
12-
environment:
13-
ATOM_LINT_WITH_BUNDLED_NODE: "false"
14-
APM_TEST_PACKAGES: ""

0 commit comments

Comments
 (0)