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

Commit 0fa23e5

Browse files
authored
Merge pull request #140 from AtomLinter/update-ci
Update CI configuration
2 parents ccb550e + c2f8b95 commit 0fa23e5

File tree

3 files changed

+3
-26
lines changed

3 files changed

+3
-26
lines changed

.travis.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,20 @@
11
### Project specific config ###
2-
3-
# Installed for linting the project
4-
language: node_js
2+
language: generic
53

64
matrix:
75
include:
86
- os: linux
97
env: ATOM_CHANNEL=stable
10-
node_js: "6"
118

129
- os: linux
1310
env: ATOM_CHANNEL=beta
14-
node_js: "6"
1511

1612
- os: osx
1713
env: ATOM_CHANNEL=stable
18-
node_js: "6"
19-
20-
env:
21-
global:
22-
- ATOM_LINT_WITH_BUNDLED_NODE="false"
2314

2415
### Generic setup follows ###
2516
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
2617

27-
# Needed to disable the auto-install step running `npm install`
28-
install: true
29-
3018
notifications:
3119
email:
3220
on_success: never

appveyor.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
11
### Project specific config ###
22
environment:
3-
ATOM_LINT_WITH_BUNDLED_NODE: "false"
4-
53
matrix:
64
- ATOM_CHANNEL: stable
75
- ATOM_CHANNEL: beta
86

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

circle.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
test:
22
override:
3-
- curl -s https://raw.githubusercontent.com/Arcanemagus/ci/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"

0 commit comments

Comments
 (0)