Skip to content

Commit

Permalink
fix hidden files
Browse files Browse the repository at this point in the history
  • Loading branch information
yunwei37 committed Sep 5, 2024
1 parent 3d86b52 commit a97e230
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/test-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,17 @@ jobs:
if: ${{!matrix.enable_jit}}
with:
name: runtime-package-no-jit-${{matrix.container.name}}
include-hidden-files: true
path: |
/github/home/.bpftime/
~/.bpftime
- name: Upload build results (with jit)
uses: actions/upload-artifact@v4
if: ${{matrix.enable_jit}}
with:
name: runtime-package-jit-${{matrix.container.name}}
include-hidden-files: true
path: |
/github/home/.bpftime/
~/.bpftime
build-and-test:
runs-on: ubuntu-22.04
needs: [build-runtime]
Expand Down Expand Up @@ -165,13 +167,13 @@ jobs:
uses: actions/download-artifact@v4
with:
name: runtime-package-jit-${{matrix.container.name}}
path: /github/home/.bpftime/
path: ~/.bpftime
- name: Download prebuilt runtime (without jit)
if: ${{!matrix.enable_jit}}
uses: actions/download-artifact@v4
with:
name: runtime-package-no-jit-${{matrix.container.name}}
path: /github/home/.bpftime/
path: ~/.bpftime
- name: Install which(required by funclatency on fedora)
if: ${{matrix.container.name=='fedora' && matrix.examples.path=='libbpf-tools/funclatency'}}
run: |
Expand Down

0 comments on commit a97e230

Please sign in to comment.