From a34fdc8eed3bc9fcffae7006d26effe6faa86d0c Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Fri, 19 Jan 2024 18:15:50 +0000 Subject: [PATCH] [ci] Update to latest version of cicleci windows orb We got a message saying that the version vs2019 will be deprecated this year. This change doesn't stop using vs2019, but just updates to the latest version of the windows orb. We may still need to move away from vs2019 in the future, but if possible we would like to continue testing on older version of windows so that we can be sure we continue to support them. --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fdac0743eb3ab..997a199dee5f5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,7 +1,7 @@ version: 2.1 orbs: - win: circleci/windows@1.0.0 + win: circleci/windows@5.0 executors: linux-node: @@ -831,7 +831,7 @@ jobs: test-windows: working_directory: "~/path with spaces" executor: - name: win/vs2019 + name: win/server-2019 shell: bash.exe -eo pipefail environment: PYTHONUNBUFFERED: "1" @@ -851,7 +851,7 @@ jobs: - run: name: Install packages command: | - choco install cmake.portable ninja pkgconfiglite + choco install -y cmake.portable ninja pkgconfiglite - run: name: Add python to bash path command: echo "export PATH=\"$PATH:/c/Python27amd64/\"" >> $BASH_ENV