Update CI #67
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cargo Build & Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
build: [stable, stable-vendor, beta, nightly, linux32, macos, macos-aarch64, win64, win64-vendor, windows-aarch64] | |
include: | |
- build: stable | |
os: ubuntu-latest | |
rust: stable | |
target: x86_64-unknown-linux-gnu | |
- build: stable-vendor | |
os: ubuntu-latest | |
rust: stable | |
target: x86_64-unknown-linux-gnu | |
- build: beta | |
os: ubuntu-latest | |
rust: beta | |
target: x86_64-unknown-linux-gnu | |
- build: nightly | |
os: ubuntu-latest | |
rust: nightly | |
target: x86_64-unknown-linux-gnu | |
- build: linux32 | |
os: ubuntu-latest | |
rust: stable | |
target: i686-unknown-linux-gnu | |
- build: macos | |
os: macos-latest | |
rust: stable | |
target: x86_64-apple-darwin | |
- build: macos-aarch64 | |
os: macos-latest | |
rust: stable | |
target: aarch64-apple-darwin | |
- build: windows-aarch64 | |
os: windows-latest | |
rust: stable | |
target: aarch64-pc-windows-msvc | |
- build: win64 | |
os: windows-latest | |
rust: stable | |
target: x86_64-pc-windows-msvc | |
- build: win64-vendor | |
os: windows-latest | |
rust: stable | |
target: x86_64-pc-windows-msvc | |
steps: | |
- uses: actions/checkout@master | |
- run: git submodule init | |
- run: git submodule update | |
- name: Set up vcpkg on Windows | |
if: startsWith(matrix.os, 'windows') && ! contains(matrix.build, 'vendor') | |
run: | | |
git clone https://github.com/microsoft/vcpkg | |
& .\vcpkg\bootstrap-vcpkg.bat | |
& .\vcpkg\vcpkg install sundials --triplet=x64-windows | |
- name: Install Ubuntu packages | |
if: startsWith(matrix.os, 'ubuntu') && ! contains(matrix.build, 'vendor') | |
run: | | |
sudo apt-get update && sudo apt-get -y install libsundials-dev | |
- name: Install Rust (rustup) | |
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 |