Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
Merge 73df8c5 into f29c93f
Browse files Browse the repository at this point in the history
  • Loading branch information
smashwilson committed Aug 24, 2018
2 parents f29c93f + 73df8c5 commit 864ac45
Show file tree
Hide file tree
Showing 5 changed files with 1,599 additions and 1,526 deletions.
84 changes: 60 additions & 24 deletions .circleci/config.yml
@@ -1,10 +1,58 @@
version: 2

jobs:
build:
macos:
xcode: "9.0"
defaults: &defaults
macos:
xcode: "9.0"
steps:
- checkout
- run:
name: create and set the default keychain
command: |
security create-keychain -p "" temporary
security default-keychain -s temporary
- run:
name: download build-package.sh
command: curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh
- run:
name: chmod build-package.sh
command: chmod u+x build-package.sh
- run:
name: tests
command: caffeinate -s ./build-package.sh
- store_test_results:
path: test-results
- store_artifacts:
path: test-results

jobs:
stable:
<<: *defaults
environment:
- ATOM_LINT_WITH_BUNDLED_NODE: "true"
- APM_TEST_PACKAGES: ""
- npm_config_clang: "1"
- CC: clang
- CXX: clang++
- ATOM_GITHUB_FS_EVENT_LOG: "1"
- MOCHA_TIMEOUT: "60000"
- UNTIL_TIMEOUT: "30000"
- CIRCLE_BUILD_IMAGE: osx
- ATOM_CHANNEL: stable
beta:
<<: *defaults
environment:
- ATOM_LINT_WITH_BUNDLED_NODE: "true"
- APM_TEST_PACKAGES: ""
- npm_config_clang: "1"
- CC: clang
- CXX: clang++
- ATOM_GITHUB_FS_EVENT_LOG: "1"
- MOCHA_TIMEOUT: "60000"
- UNTIL_TIMEOUT: "30000"
- CIRCLE_BUILD_IMAGE: osx
- ATOM_CHANNEL: beta
dev:
<<: *defaults
environment:
- ATOM_LINT_WITH_BUNDLED_NODE: "true"
- APM_TEST_PACKAGES: ""
Expand All @@ -15,24 +63,12 @@ jobs:
- MOCHA_TIMEOUT: "60000"
- UNTIL_TIMEOUT: "30000"
- CIRCLE_BUILD_IMAGE: osx
- ATOM_CHANNEL: dev

steps:
- checkout
- run:
name: create and set the default keychain
command: |
security create-keychain -p "" temporary
security default-keychain -s temporary
- run:
name: download build-package.sh
command: curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh
- run:
name: chmod build-package.sh
command: chmod u+x build-package.sh
- run:
name: tests
command: caffeinate -s ./build-package.sh
- store_test_results:
path: test-results
- store_artifacts:
path: test-results
workflows:
version: 2
build:
jobs:
- stable
- beta
- dev
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -6,3 +6,4 @@ spec/fixtures/b/
.tern-project
.nyc_output/
coverage/
test-results/
1 change: 1 addition & 0 deletions appveyor.yml
Expand Up @@ -19,6 +19,7 @@ environment:
matrix:
- ATOM_CHANNEL: stable
- ATOM_CHANNEL: beta
- ATOM_CHANNEL: dev

install:
- ps: Install-Product node 6
Expand Down

0 comments on commit 864ac45

Please sign in to comment.