From b1273548fbabe4dbbce477c8f7e3945bffe994f0 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 29 Jul 2022 12:15:54 -0500 Subject: [PATCH] Try using `windows-latest` CI (#4553) See if our `windows-2019` woes are solved now that backtraces are using frame pointers instead of native APIs. --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index db439cd79d..1bf625b589 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -217,8 +217,8 @@ jobs: - os: ubuntu-latest # defaults to x86_64-apple-darwin - os: macos-latest - - os: windows-2019 - - os: windows-2019 + - os: windows-latest + - os: windows-latest target: x86_64-pc-windows-gnu - os: ubuntu-latest target: aarch64-unknown-linux-gnu @@ -302,11 +302,11 @@ jobs: - run: cmake -E env CTEST_OUTPUT_ON_FAILURE=1 cmake --build examples/build --config Debug --target RUN_TESTS env: RUST_BACKTRACE: 1 - if: matrix.target == '' && matrix.os == 'windows-2019' + if: matrix.target == '' && matrix.os == 'windows-latest' - run: cmake -E env CTEST_OUTPUT_ON_FAILURE=1 cmake --build examples/build --config Debug --target test env: RUST_BACKTRACE: 1 - if: matrix.target == '' && matrix.os != 'windows-2019' + if: matrix.target == '' && matrix.os != 'windows-latest' # Build and test all features - run: ./ci/run-tests.sh --locked