Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Pusnow authored Feb 12, 2024
1 parent 906f23d commit 9c6cd3d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,14 @@ jobs:
sudo apt update && sudo apt install -y linux-headers-generic build-essential libnuma-dev git meson python3-pyelftools curl libclang-dev clang llvm-dev
- name: Install DPDK
run: |
wget -O dpdk.tar.xz https://fast.dpdk.org/rel/dpdk-${DPDK_VERSION}.tar.xz && tar -xvJf dpdk.tar.xz
wget -O dpdk.tar.xz https://fast.dpdk.org/rel/dpdk-${DPDK_VERSION}.tar.xz
tar -xvJf dpdk.tar.xz
cd dpdk-${DPDK_VERSION}
meson build
ninja -C build
ninja -C build install
ldconfig
rm -rf dpdk-${DPDK_VERSION}
- name: Build
run: cargo build --verbose
- name: Run tests
Expand Down

0 comments on commit 9c6cd3d

Please sign in to comment.