Skip to content

Commit

Permalink
Update compat.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
qjerome authored Sep 28, 2023
1 parent e18df4b commit 31a3c26
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/compat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,17 @@ jobs:
- uses: actions/checkout@v3

- name: Install tools
run: sudo apt install -y qemu-system-x86 curl
run: sudo apt install -y qemu-system-x86 curl clang lld libbpf-dev

# we need to fetch rust deps first to speed up cargo xtask
- name: Cache Rust dependencies
uses: actions/cache@v3
with:
path: |
~/.cargo
~/.rustup
target
key: ${{ runner.os }}-rust-${{ hashFiles('**/Cargo.lock') }}

- name: Linux Kernel 5.4
run: ./scripts/ci/test_kernel.sh 5.4

0 comments on commit 31a3c26

Please sign in to comment.