Skip to content

Commit

Permalink
fixup! Install docker compose to pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
joaofl committed Jan 2, 2025
1 parent e040994 commit e0d392d
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,17 @@ jobs:
profile: minimal
toolchain: stable

# - name: Install extra packages
# run: |
# cargo install cross --git https://github.com/cross-rs/cross
- name: Install extra packages
run: |
cargo install cross --git https://github.com/cross-rs/cross
- name: Install Docker Compose
run: |
sudo apt-get update
sudo apt-get install -y docker-compose nasm build-essential clang wget tftp-hpa curl
sudo apt-get install -y docker-compose
- name: Test
continue-on-error: false
run: |
cargo test --release
cross build --release
cross test --release

0 comments on commit e0d392d

Please sign in to comment.