Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris00 committed Apr 18, 2024
1 parent d65d6be commit 3dca6d2
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
build: [stable, stable-vendor, beta, nightly, linux32, macos, aarch64-ios, win64, win64-vendor, windows-latest]
build: [stable, stable-vendor, beta, nightly, linux32, macos, aarch64-ios, win64, win64-vendor]
include:
- build: stable
os: ubuntu-latest
Expand Down Expand Up @@ -50,10 +50,6 @@ jobs:
os: windows-latest
rust: stable
target: x86_64-pc-windows-msvc
- build: windows-latest
os: windows-latest
rust: stable-x86_64
target: x86_64-pc-windows-msvc
steps:
- uses: actions/checkout@master
- run: git submodule init
Expand All @@ -69,8 +65,11 @@ jobs:
run: |
sudo apt-get update && sudo apt-get -y install libsundials-dev
- name: Install Rust (rustup)
run: rustup update ${{ matrix.rust }} --no-self-update && rustup default ${{ matrix.rust }}
run: |
rustup update --no-self-update
rustup default ${{ matrix.rust }}-${{ matrix.target }}
shell: bash
- run: rustup target add ${{ matrix.target }}
- run: cargo build
- run: cargo build --all-features
- run: cargo test

0 comments on commit 3dca6d2

Please sign in to comment.