Skip to content

Commit

Permalink
ci: bump Windows Node version to v12.13
Browse files Browse the repository at this point in the history
This is the [minimum for Tailwind](tailwindlabs/tailwindcss#2582), so it is required.
  • Loading branch information
dgp1130 committed Dec 10, 2021
1 parent 3230d0f commit ce39092
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .circleci/config.yml
Expand Up @@ -77,8 +77,8 @@ commands:
at: *workspace_location
setup_windows:
steps:
- run: nvm install 12.1.0
- run: nvm use 12.1.0
- run: nvm install 12.13.0
- run: nvm use 12.13.0
- run: npm install -g yarn@1.17.3
- run: node --version
- run: yarn --version
Expand Down Expand Up @@ -255,7 +255,7 @@ jobs:
# too early without Saucelabs not being ready.
- run: ./scripts/saucelabs/wait-for-tunnel.sh
- run: PATH=~/.npm-global/bin:$PATH node ./tests/legacy-cli/run_e2e ./tests/legacy-cli/e2e/tests/misc/browsers.ts --ve
- run: PATH=~/.npm-global/bin:$PATH node ./tests/legacy-cli/run_e2e ./tests/legacy-cli/e2e/tests/misc/browsers.ts
- run: PATH=~/.npm-global/bin:$PATH node ./tests/legacy-cli/run_e2e ./tests/legacy-cli/e2e/tests/misc/browsers.ts
- run: ./scripts/saucelabs/stop-tunnel.sh

build:
Expand Down Expand Up @@ -283,7 +283,7 @@ jobs:
- custom_attach_workspace
- run:
name: Decrypt Credentials
# Note: when changing the image, you might have to re-encrypt the credentials with a
# Note: when changing the image, you might have to re-encrypt the credentials with a
# matching version of openssl.
# See https://stackoverflow.com/a/43847627/2116927 for more info.
command: |
Expand Down Expand Up @@ -324,7 +324,7 @@ jobs:
- setup_windows
# Run partial e2e suite on PRs only. Master will run the full e2e suite with sharding.
- run: if (Test-Path env:CIRCLE_PR_NUMBER) { node tests\legacy-cli\run_e2e.js "--glob={tests/basic/**,tests/i18n/extract-ivy*.ts}" }

e2e-cli-win:
executor: windows-executor
parallelism: 4
Expand Down Expand Up @@ -395,12 +395,12 @@ workflows:

# Bazel jobs
# These jobs only really depend on Setup, but the build job is very quick to run (~35s) and
# will catch any build errors before proceeding to the more lengthy and resource intensive
# will catch any build errors before proceeding to the more lengthy and resource intensive
# Bazel jobs.
- test:
requires:
- build

# Windows jobs
# These jobs only run after their non-windows counterparts finish successfully.
# This isn't strictly necessary as there is no artifact dependency, but helps economize
Expand All @@ -419,7 +419,7 @@ workflows:
requires:
- setup-and-build-win
- e2e-cli

# Publish jobs
- snapshot_publish:
<<: *only_release_branches
Expand Down Expand Up @@ -453,4 +453,4 @@ workflows:
- build
- test-browsers:
requires:
- build
- build

0 comments on commit ce39092

Please sign in to comment.