Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
Signed-off-by: Quentin JEROME <[email protected]>
  • Loading branch information
qjerome committed Sep 18, 2023
1 parent 0cb6c14 commit e9557aa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,17 @@ jobs:
uses: actions/cache@v3
with:
path: |
build-tools/llvm-install
build-tools/bpf-linker
build-tools/
key: ${{ steps.cache-key.outputs.cache-key }}

- name: Build-Tools (LLVM and bpf-linker)
run: cargo xtask build-tools
- name: Build-Tools (LLVM and bpf-linker)
run: cargo xtask build-tools --free-space

#- name: Save cached build tools
# uses: actions/cache@v3
# with:
# path: build-tools # path where build-tools are installed
# key: ${{ runner.os }}-build-tools-${{ hashFiles('xtask/src/**/*.rs') }}

- name: Build (eBPF and userland)
- name: Build (eBPF and userland)
run: cargo xtask build
2 changes: 1 addition & 1 deletion xtask/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub fn find_first_in<T: AsRef<Path>>(path: T, _match: &str) -> std::io::Result<P
.file_name()
.map(|f| f.to_string_lossy())
.unwrap_or_default()
.ends_with(_match)
.eq(_match)
{
return Ok(entry_path);
}
Expand Down

0 comments on commit e9557aa

Please sign in to comment.