Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yunwei37 committed Sep 5, 2024
1 parent 9f43a89 commit 3d86b52
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,19 @@ jobs:
run: |
make -C example -j
- name: Upload build results (without jit)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{!matrix.enable_jit}}
with:
name: runtime-package-no-jit-${{matrix.container.name}}
path: |
~/.bpftime
/github/home/.bpftime/
- name: Upload build results (with jit)
uses: actions/upload-artifact@v4
if: ${{matrix.enable_jit}}
with:
name: runtime-package-jit-${{matrix.container.name}}
path: |
~/.bpftime
/github/home/.bpftime/
build-and-test:
runs-on: ubuntu-22.04
needs: [build-runtime]
Expand Down Expand Up @@ -165,13 +165,13 @@ jobs:
uses: actions/download-artifact@v4
with:
name: runtime-package-jit-${{matrix.container.name}}
path: ~/.bpftime
path: /github/home/.bpftime/
- name: Download prebuilt runtime (without jit)
if: ${{!matrix.enable_jit}}
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: runtime-package-no-jit-${{matrix.container.name}}
path: ~/.bpftime
path: /github/home/.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 3d86b52

Please sign in to comment.