🔗 Static Linking #2
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: 🔗 Static Linking | |
on: | |
workflow_dispatch: | |
inputs: | |
onnxruntime-branch: | |
type: string | |
description: "ONNX Runtime branch" | |
default: "v1.19.2" | |
push: | |
paths: | |
- 'ort-sys/build.rs' | |
pull_request: | |
paths: | |
- 'ort-sys/build.rs' | |
env: | |
RUST_BACKTRACE: 1 | |
CARGO_INCREMENTAL: 0 | |
CARGO_PROFILE_DEV_DEBUG: 0 | |
jobs: | |
static-link-linux: | |
name: Linux (x64) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Compile ONNX Runtime | |
run: | | |
git clone https://github.com/microsoft/onnxruntime --recursive --branch ${{ inputs.onnxruntime-branch }} --single-branch --depth 1 | |
cd onnxruntime | |
./build.sh --update --build --config Release --parallel --compile_no_warning_as_error --skip_submodule_sync | |
cd .. | |
- name: Install stable Rust toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
- uses: Swatinem/rust-cache@v1 | |
- name: Run test | |
run: | | |
ORT_LIB_LOCATION="$(pwd)/onnxruntime/build/Linux/Release" cargo run --example custom-ops | |
minimal-build: | |
name: Minimal build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Compile ONNX Runtime | |
run: | | |
git clone https://github.com/microsoft/onnxruntime --recursive --branch ${{ inputs.onnxruntime-branch }} --single-branch --depth 1 | |
cd onnxruntime | |
./build.sh --update --build --config Release --parallel --compile_no_warning_as_error --skip_submodule_sync --minimal_build | |
cd .. | |
- name: Install stable Rust toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
- uses: Swatinem/rust-cache@v1 | |
- name: Test linking | |
run: | | |
ORT_LIB_LOCATION="$(pwd)/onnxruntime/build/Linux/Release" cargo build --example gpt2 |