From ce39092cca8d522d88ec5f6d8b2e3fc3b84f487a Mon Sep 17 00:00:00 2001 From: Doug Parker Date: Thu, 9 Dec 2021 16:00:50 -0800 Subject: [PATCH] ci: bump Windows Node version to v12.13 This is the [minimum for Tailwind](https://github.com/tailwindlabs/tailwindcss/pull/2582), so it is required. --- .circleci/config.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bd37a66f34a3..1e2b3903adfe 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 @@ -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: @@ -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: | @@ -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 @@ -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 @@ -419,7 +419,7 @@ workflows: requires: - setup-and-build-win - e2e-cli - + # Publish jobs - snapshot_publish: <<: *only_release_branches @@ -453,4 +453,4 @@ workflows: - build - test-browsers: requires: - - build \ No newline at end of file + - build