Skip to content

Commit

Permalink
GITHUB: preserve ccache
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Westerfeld <[email protected]>
  • Loading branch information
swesterfeld committed Jun 20, 2024
1 parent 8861ece commit c107085
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v4
with: { path: "ccache", key: "debianbuild-${{hashFiles ('misc/*')}}" }
- name: Test Linux Build
run: misc/debianbuild.sh
- uses: actions/upload-artifact@v4
Expand All @@ -27,6 +29,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v4
with: { path: "ccache", key: "archbuild-${{hashFiles ('misc/*')}}" }
- name: Test Arch Linux Build
run: misc/archbuild.sh
- uses: actions/upload-artifact@v4
Expand All @@ -38,6 +42,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v4
with: { path: "ccache", key: "debianbuild-${{hashFiles ('misc/*')}}" }
- name: Test Linux Build with Sanitizers
run: misc/debianbuild.sh --enable-asan --enable-ubsan
- uses: actions/upload-artifact@v4
Expand All @@ -49,6 +55,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v4
with: { path: "ccache", key: "archbuild-${{hashFiles ('misc/*')}}" }
- name: Test Arch Linux Build with Sanitizers
run: misc/archbuild.sh --enable-asan --enable-ubsan
- uses: actions/upload-artifact@v4
Expand Down

0 comments on commit c107085

Please sign in to comment.