Skip to content

Commit

Permalink
workaround too old system onnxruntime.dll
Browse files Browse the repository at this point in the history
  • Loading branch information
ahirner committed Nov 20, 2022
1 parent b510ec5 commit 910bc17
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
INFUR_NO_TEST_GEN: 1
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
Expand All @@ -26,4 +27,16 @@ jobs:
- run: cargo version -v
- run: ffmpeg -version
- uses: actions/checkout@v3
- run: cargo test
- name: cargo test (*nix)
if: startsWith(matrix.os, 'windows') != true
run: cargo test
- name: cargo test (windows)
if: startsWith(matrix.os, 'windows')
run: |
# workaround so that downloaded dll gets in fact loaded by OS,
# the native link directive in onnxruntime-sys build.rs doesn't work
# https://github.com/nbigaouette/onnxruntime-rs/issues/83
cargo build
# copy .dll next to test .exe
find target -name onnxruntime.dll -exec cp "{}" target/debug/deps \;
cargo test

0 comments on commit 910bc17

Please sign in to comment.