summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorYuki Okushi <yuki.okushi@huawei.com>2021-10-13 10:14:34 +0900
committerYuki Okushi <yuki.okushi@huawei.com>2021-10-13 11:45:56 +0900
commitfaeb85f44c673f80bd30f5cf243529db41d84f2a (patch)
tree8893c79ab95e97c6ba4c581e146ff446570969d7 /.github
parent0b8387e89cff3500d6c936a3fcb55118e5126e2d (diff)
downloadrust-libc-faeb85f44c673f80bd30f5cf243529db41d84f2a.tar.gz
Run MSRV check on Windows CI
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/bors.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/bors.yml b/.github/workflows/bors.yml
index 5bbf286c86..0b85a7f70b 100644
--- a/.github/workflows/bors.yml
+++ b/.github/workflows/bors.yml
@@ -226,6 +226,30 @@ jobs:
- name: Execute build.sh
run: LIBC_CI=1 TOOLCHAIN=${{ matrix.toolchain }} sh ./ci/build.sh
+ build_channels_windows:
+ name: Build Channels Windows
+ runs-on: windows-2019
+ env:
+ OS: windows
+ strategy:
+ fail-fast: true
+ matrix:
+ toolchain: [
+ 1.19.0,
+ 1.24.0,
+ 1.25.0,
+ 1.30.0,
+ stable,
+ ]
+ steps:
+ - uses: actions/checkout@v2
+ - name: Self-update rustup
+ run: rustup self update
+ shell: bash
+ - name: Execute build.sh
+ run: LIBC_CI=1 TOOLCHAIN=${{ matrix.toolchain }} WIN_TARGET=${{ matrix.target }} sh ./ci/build.sh
+ shell: bash
+
semver_linux:
name: Semver Linux
runs-on: ubuntu-20.04
@@ -283,6 +307,7 @@ jobs:
docker_switch,
build_channels_linux,
build_channels_macos,
+ build_channels_windows,
docs,
]
@@ -303,6 +328,7 @@ jobs:
docker_switch,
build_channels_linux,
build_channels_macos,
+ build_channels_windows,
docs,
]