Skip to content

Commit 9783400

Browse files
authored
Fixes Node 10 CI on OSX (#6580)
* Update config.yml * Update config.yml * Update config.yml
1 parent daac3a0 commit 9783400

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.circleci/config.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,8 @@ jobs:
157157
brew uninstall --ignore-dependencies node
158158
brew update
159159
HOMEBREW_NO_AUTO_UPDATE=1 brew install node@10
160+
brew link --overwrite --force node@10
161+
[[ $(node --version) =~ ^v10\. ]]
160162
- *attach_workspace
161163
- *test_build
162164
- *test_run
@@ -168,6 +170,8 @@ jobs:
168170
command: |
169171
brew uninstall --ignore-dependencies node
170172
HOMEBREW_NO_AUTO_UPDATE=1 brew install node@8
173+
brew link --overwrite --force node@8
174+
[[ $(node --version) =~ ^v8\. ]]
171175
- *attach_workspace
172176
- *test_build
173177
- *test_run
@@ -179,7 +183,8 @@ jobs:
179183
command: |
180184
brew uninstall --ignore-dependencies node
181185
HOMEBREW_NO_AUTO_UPDATE=1 brew install node@6
182-
brew link --force node@6
186+
brew link --overwrite --force node@6
187+
[[ $(node --version) =~ ^v6\. ]]
183188
- *attach_workspace
184189
- *test_build
185190
- *test_run

0 commit comments

Comments
 (0)