We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18c530f commit ce7a751Copy full SHA for ce7a751
.github/workflows/test-linux.yml
@@ -33,6 +33,10 @@ jobs:
33
test-linux:
34
if: github.event.pull_request.draft == false
35
runs-on: ubuntu-latest
36
+ env:
37
+ CC: sccache gcc
38
+ CXX: sccache g++
39
+ SCCACHE_GHA_ENABLED: 'true'
40
steps:
41
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
42
with:
@@ -41,6 +45,10 @@ jobs:
45
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
46
43
47
python-version: ${{ env.PYTHON_VERSION }}
48
+ - name: Set up sccache
49
+ uses: mozilla-actions/sccache-action@2e7f9ec7921547d4b46598398ca573513895d0bd # v0.0.4
50
+ with:
51
+ version: v0.8.0
44
52
- name: Environment Information
53
run: npx envinfo
54
- name: Build
0 commit comments