Skip to content

Commit

Permalink
chore: fixing build with multi targets
Browse files Browse the repository at this point in the history
  • Loading branch information
giangndm committed Nov 23, 2023
1 parent 6b8b504 commit aaf9236
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ jobs:
target: aarch64-apple-darwin
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
Expand All @@ -103,17 +104,17 @@ jobs:
with:
use-cross: true
command: test
args: --target ${{ matrix.target }}
args: --verbose --all-features --workspace --target ${{ matrix.target }}
code-coverage:
runs-on: ubuntu-latest
env:
CARGO_TERM_COLOR: always
steps:
- uses: actions/checkout@v4
- name: Install ffmpeg
- name: Install deps
run: |
sudo apt-get update
sudo apt install -y libsoxr-dev
sudo apt install -y libsoxr-dev libopus-dev
- name: Install Rust
run: rustup update stable
- name: Install cargo-llvm-cov
Expand Down

0 comments on commit aaf9236

Please sign in to comment.