Skip to content

Commit

Permalink
Run CI on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Luthaf committed Jul 26, 2023
1 parent b97bcec commit 7502bca
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,12 @@ jobs:
matrix:
include:
- os: ubuntu-20.04
rust-target: x86_64-unknown-linux-gnu
python-version: "3.7"
- os: ubuntu-20.04
rust-target: x86_64-unknown-linux-gnu
python-version: "3.11"
- os: macos-11
rust-target: x86_64-apple-darwin
python-version: "3.11"
- os: windows-2019
python-version: "3.11"
steps:
- uses: actions/checkout@v3
Expand All @@ -39,7 +38,6 @@ jobs:
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
target: ${{ matrix.rust-target }}

- name: install python dependencies
run: |
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/rust-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,32 @@ jobs:
build-type: debug
test-static-lib: true
extra-name: / static C library

- os: ubuntu-20.04
rust-version: stable
rust-target: x86_64-unknown-linux-gnu
build-type: release
cargo-build-flags: --release
do-valgrind: true
extra-name: / release valgrind

# check the build on a stock Ubuntu 20.04, including cmake 3.16
- os: ubuntu-20.04
rust-version: "1.63"
container: ubuntu:20.04
rust-target: x86_64-unknown-linux-gnu
build-type: debug
extra-name: / cmake 3.16

- os: macos-11
rust-version: stable
rust-target: x86_64-apple-darwin
build-type: debug

- os: windows-2019
rust-version: stable
rust-target: x86_64-pc-windows-msvc
build-type: debug
steps:
- name: install dependencies in container
if: matrix.container == 'ubuntu:20.04'
Expand Down

0 comments on commit 7502bca

Please sign in to comment.