[DO NOT MERGE] fix: polishing tmp fs and s3 fs #1124
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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
env: | |
CARGO_INCREMENTAL: 0 | |
CARGO_NET_RETRY: 10 | |
CARGO_TERM_COLOR: always | |
RUSTUP_MAX_RETRIES: 10 | |
ORT_DYLIB_PATH: /tmp/onnxruntime/lib/libonnxruntime.so | |
RUST_LOG: event_worker=trace | |
jobs: | |
cargo-fmt: | |
name: "cargo fmt" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup show | |
- run: ./scripts/fmt.sh | |
cargo-clippy: | |
name: "cargo clippy" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup show | |
- uses: Swatinem/rust-cache@v2 | |
- run: ./scripts/clippy.sh | |
cargo-test: | |
name: "cargo test" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Remove unwanted software | |
run: | | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf /usr/local/lib/android | |
sudo rm -rf /opt/ghc | |
sudo rm -rf /opt/hostedtoolcache/CodeQL | |
sudo docker image prune --all --force | |
sudo apt-get remove --purge -y man-db | |
sudo apt-get remove 'clang-13*' 'clang-14*' 'clang-15*' 'llvm-13*' 'llvm-14*' 'llvm-15*' 'lld-13*' 'lld-14*' 'lld-15*' | |
- uses: actions/checkout@v4 | |
- run: rustup show | |
- uses: Swatinem/rust-cache@v2 | |
- uses: cardinalby/export-env-action@v2 | |
with: | |
envFile: ".env" | |
- name: Install ONNX Runtime Library | |
run: ./scripts/install_onnx.sh ${{ env.ONNXRUNTIME_VERSION }} x64 /tmp/onnxruntime | |
- run: ./scripts/test.sh --features base/tracing |