Skip to content

Commit

Permalink
fix: install libdbus for aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
ccrutchf committed Nov 17, 2024
1 parent ee66ebc commit 6190835
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,10 @@ jobs:
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y libdbus-1-dev \
sudo apt-get install -y gcc-aarch64-linux-gnu \
libdbus-1-dev \
libdbus-1-dev:arm64 \
pkg-config
- name: Install 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 @@ -37,7 +35,7 @@ jobs:
- name: Build
run: |
cargo build --verbose --release --target=x86_64-unknown-linux-gnu
cross build --verbose --release --target=aarch64-unknown-linux-gnu
cargo 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 6190835

Please sign in to comment.