Skip to content

Commit

Permalink
Fixes Node 10 CI on OSX (#6580)
Browse files Browse the repository at this point in the history
* Update config.yml

* Update config.yml

* Update config.yml
  • Loading branch information
arcanis authored and Maël Nison committed Oct 25, 2018
1 parent 82600d8 commit 98418da
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ jobs:
brew uninstall --ignore-dependencies node
brew update
HOMEBREW_NO_AUTO_UPDATE=1 brew install node@10
brew link --overwrite --force node@10
[[ $(node --version) =~ ^v10\. ]]
- *attach_workspace
- *test_build
- *test_run
Expand All @@ -168,6 +170,8 @@ jobs:
command: |
brew uninstall --ignore-dependencies node
HOMEBREW_NO_AUTO_UPDATE=1 brew install node@8
brew link --overwrite --force node@8
[[ $(node --version) =~ ^v8\. ]]
- *attach_workspace
- *test_build
- *test_run
Expand All @@ -179,7 +183,8 @@ jobs:
command: |
brew uninstall --ignore-dependencies node
HOMEBREW_NO_AUTO_UPDATE=1 brew install node@6
brew link --force node@6
brew link --overwrite --force node@6
[[ $(node --version) =~ ^v6\. ]]
- *attach_workspace
- *test_build
- *test_run
Expand Down

0 comments on commit 98418da

Please sign in to comment.