Skip to content

Commit

Permalink
install ccache on build with S2E CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sksat committed Mar 16, 2023
1 parent d8c10b7 commit 9f1bd5e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build_with_s2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,17 @@ jobs:
with:
arch: amd64_x86

- name: Install ccache
run: |
choco install ccache
ccache --show-stats --verbose
- name: cache by ccache
uses: actions/cache@v3
with:
key: ccache-${{ runner.os }}-${{ hashFiles('./c2a-core/**', './s2e-user/**', './s2e-core/**') }}
restore-keys: ccache-${{ runner.os }}-

- name: cache extlib
id: cache-extlib
uses: actions/cache@v3
Expand Down

0 comments on commit 9f1bd5e

Please sign in to comment.