Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
leeopop committed Feb 19, 2024
1 parent 6db628a commit 4217c50
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ jobs:
run: |
curl -f -sSf https://sh.rustup.rs | bash -s -- -y --profile minimal --component clippy rustfmt
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Check
run: |
clang --version
llvm-config --version
cargo --version
gcc --version
- name: Build
run: cargo build --verbose
- name: Run tests
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[workspace]
resolver = "2"

members = [
"dpdk-sys"
Expand Down
8 changes: 0 additions & 8 deletions dpdk-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -329,14 +329,6 @@ impl State {
continue 'outer;
}
}
for lib_name in &self.dpdk_links {
if !file_name.starts_with(&format!(
"rte_{}",
lib_name.file_stem().unwrap().to_str().unwrap()
)) {
continue 'outer;
}
}
println!("cargo:warning=header-name: {}", file_name);
new_vec.push(file.clone());
}
Expand Down

0 comments on commit 4217c50

Please sign in to comment.