Skip to content

Commit

Permalink
fix: use cross instead of cargo
Browse files Browse the repository at this point in the history
  • Loading branch information
ccrutchf committed Nov 17, 2024
1 parent 61f11a3 commit 87464e3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
sudo apt-get install -y libdbus-1-dev \
pkg-config
- name: Install Cross
run: cargo install cross --git https://github.com/cross-rs/cross
run: |
cargo install cross --git https://github.com/cross-rs/cross
sudo systemctl start docker
- name: Setup Cargo Config
run: |
mkdir -p .cargo
Expand All @@ -35,7 +37,7 @@ jobs:
- name: Build
run: |
cargo build --verbose --release --target=x86_64-unknown-linux-gnu
cargo build --verbose --release --target=aarch64-unknown-linux-gnu
cross build --verbose --release --target=aarch64-unknown-linux-gnu
- name: Archive Linux x86_64 Results
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 87464e3

Please sign in to comment.