Skip to content

Commit

Permalink
Install libmnl and libnftnl on CI containers
Browse files Browse the repository at this point in the history
  • Loading branch information
faern committed May 29, 2024
1 parent f9d7124 commit 8e0edd9
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ jobs:
rust: [stable, beta, nightly, 1.56.0]
runs-on: ubuntu-latest
steps:
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install -y libnftnl-dev libmnl-dev
- uses: actions/checkout@v4

- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af #v1.0.7
Expand All @@ -40,6 +45,11 @@ jobs:
minimal-versions:
runs-on: ubuntu-latest
steps:
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install -y libnftnl-dev libmnl-dev
- uses: actions/checkout@v4

- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af #v1.0.7
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ jobs:
clippy-linting:
runs-on: ubuntu-latest
steps:
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install -y libnftnl-dev libmnl-dev
- uses: actions/checkout@v4

- uses: actions-rs/toolchain@v1.0.6
Expand Down

0 comments on commit 8e0edd9

Please sign in to comment.