Skip to content

Commit

Permalink
fix(ci): Distinct feature enabling only for component: daemon
Browse files Browse the repository at this point in the history
  • Loading branch information
tuxuser committed Jul 31, 2024
1 parent 29f5661 commit a2cde7b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
fail-fast: false
matrix:
component: [shellcode_utils, loader, shellcode_stage1, shellcode_stage1_network, shellcode_stage2, shellcode_gen, daemon, server]
include:
- component: daemon
features: firewall

steps:
- name: Checkout
Expand All @@ -22,7 +25,7 @@ jobs:

- name: Build ${{ matrix.component }}
working-directory: crates/${{ matrix.component }}
run: cargo build --release --all-features
run: cargo build --release --features=${{ matrix.features }}

- name: Upload artifacts
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit a2cde7b

Please sign in to comment.