Initialize to conda environment for CI #60
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, beta, nightly, linux32, macos, aarch64-ios, win64, windows-latest] | |
include: | |
- build: stable | |
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: Anaconda on Linux | |
os: ubuntu-latest | |
rust: stable | |
target: i686-unknown-linux-gnu | |
- build: macos | |
os: macos-latest | |
rust: stable | |
target: x86_64-apple-darwin | |
- build: aarch64-ios | |
os: macos-latest | |
rust: stable | |
target: aarch64-apple-ios | |
- 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: windows-latest | |
os: windows-latest | |
rust: stable-x86_64 | |
target: x86_64-pc-windows-msvc | |
steps: | |
- uses: actions/checkout@master | |
- run: git submodule init | |
- run: git submodule update | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
if: ${{ ! startsWith(matrix.build, 'Anaconda') }} | |
- name: Install Matplotlib (pip) | |
if: ${{ ! startsWith(matrix.build, 'Anaconda') }} | |
run: pip install matplotlib | |
- name: Install Matplotlib (Anaconda) | |
if: startsWith(matrix.build, 'Anaconda') | |
run: $CONDA/bin/conda install conda-forge::matplotlib | |
- name: Install Rust (rustup) | |
run: rustup update ${{ matrix.rust }} --no-self-update && rustup default ${{ matrix.rust }} | |
shell: bash | |
- run: rustup target add ${{ matrix.target }} | |
- run: cargo build -vv | |
- run: cargo test | |
if: ${{ ! startsWith(matrix.build, 'Anaconda') }} | |
- run: cargo run --example a_simple_example | |
if: ${{ ! startsWith(matrix.build, 'Anaconda') }} | |
- name: Run example with Anaconda | |
run: | | |
eval "$($CONDA/bin/conda shell.bash activate)" | |
cargo run --example a_simple_example |