Skip to content

Commit

Permalink
Test 23
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris00 committed May 3, 2024
1 parent 30d2d67 commit a8fce61
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,16 @@ jobs:
run: python3 -m pip install -U matplotlib
- name: Setup Miniconda
if: startsWith(matrix.build, 'anaconda macos')
uses: conda-incubator/[email protected].3
uses: conda-incubator/[email protected].4
- name: Install Matplotlib (Anaconda)
if: startsWith(matrix.build, 'anaconda')
run: $CONDA/bin/conda install conda-forge::matplotlib
- name: Install Rust (rustup)
run: |
rustup update --no-self-update
rustup default ${{ matrix.rust }}
- run: cargo build -v
- run: cargo build
if: ${{ ! startsWith(matrix.build, 'anaconda') }}
- run: cargo test
if: ${{ ! startsWith(matrix.build, 'anaconda') }}
- run: cargo run --example a_simple_example
Expand All @@ -71,8 +72,12 @@ jobs:
- name: Run example with Anaconda on MacOS
continue-on-error: true
if: startsWith(matrix.build, 'anaconda macos')
shell: bash
run: |
eval "$($CONDA/bin/conda shell.bash activate)"
export DYLD_LIBRARY_PATH=$CONDA_PREFIX/lib
export DYLD_LIBRARY_PATH=$CONDA_PREFIX/lib/py
mkdir $CONDA_PREFIX/lib/py
ln -s $CONDA_PREFIX/lib/libpython* $DYLD_LIBRARY_PATH
PYO3_PRINT_CONFIG=1 cargo build
cargo run --example a_simple_example
cargo run --example flower

0 comments on commit a8fce61

Please sign in to comment.