From: Arik Sosman Date: Tue, 22 Oct 2024 20:09:24 +0000 (-0700) Subject: Skip MSRV on Windows in CI X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=3d50b1d83b532417a6cfc16510c24ab0f9c47fb8;p=rust-lightning Skip MSRV on Windows in CI --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 84823d672..7487ea4a4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,6 +19,9 @@ jobs: matrix: platform: [ ubuntu-latest, windows-latest, macos-latest ] toolchain: [ stable, beta, 1.63.0 ] # 1.63.0 is the MSRV for all crates. + exclude: + - platform: windows-latest + toolchain: 1.63.0 runs-on: ${{ matrix.platform }} steps: - name: Checkout source code