From 63fec67e2836579f53d833d3692151f9d6be6c8e Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Wed, 6 Apr 2022 15:47:08 +0800 Subject: [PATCH] run both windows toolchains (#298) Maybe that way certain errors can be found related to windows error codes. --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74edf683424..426be1829a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,6 +32,11 @@ jobs: run: make tests build-and-test-on-windows: + strategy: + matrix: + include: + - target: x86_64-pc-windows-gnu + - target: x86_64-pc-windows-msvc name: Windows runs-on: windows-2019 steps: @@ -40,6 +45,7 @@ jobs: with: profile: default toolchain: stable + target: ${{ matrix.target }} override: true - uses: Swatinem/rust-cache@v1 - name: "Check default features build on windows"