Skip to content

Commit

Permalink
Add linux CI build with minimal features
Browse files Browse the repository at this point in the history
Helps ensure all optional features are truly optional
  • Loading branch information
Beinsezii committed Aug 4, 2024
1 parent e9c5213 commit d28b639
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build_release_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ jobs:
- uses: actions/checkout@v4
- name: Install deps
run: sudo apt install libasound2-dev libdbus-1-dev pkg-config libjack-jackd2-dev
- name: Build Linux Release (Minimal)
run: cargo build --release --no-default-features --features "backend-sympal"
- name: Upload Linux Artifact (Minimal)
uses: actions/upload-artifact@v4
with:
name: linux_binary_minimal
path: target/release/ompl
- name: Build Linux Release
run: cargo build --release --features "backend-rodio"
- name: Upload Linux Artifact
Expand Down

0 comments on commit d28b639

Please sign in to comment.