Skip to content

Commit 76e9df7

Browse files
committed
do not use ccache in self host runner
1 parent b14db98 commit 76e9df7

File tree

1 file changed

+1
-20
lines changed

1 file changed

+1
-20
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,7 @@ jobs:
99
format-check:
1010
runs-on: [self-hosted, nvidia]
1111
permissions:
12-
contents: write
13-
env:
14-
CMAKE_C_COMPILER_LAUNCHER: ccache
15-
CMAKE_CXX_COMPILER_LAUNCHER: ccache
16-
12+
contents: write
1713
steps:
1814
- name: Checkout repository
1915
uses: actions/checkout@v4
@@ -29,12 +25,6 @@ jobs:
2925
activate-environment: true
3026
python-version: ${{ env.PYTHON_VERSION }}
3127

32-
- name: ccache
33-
uses: hendrikmuhs/[email protected]
34-
with:
35-
create-symlink: true
36-
key: ${{ github.job }}-${{ matrix.os }}
37-
3828
- name: Ensure venv (local & persistent)
3929
run: |
4030
[[ -f requirements-test.txt ]] && \
@@ -63,9 +53,6 @@ jobs:
6353
needs: format-check
6454
permissions:
6555
contents: read
66-
env:
67-
CMAKE_C_COMPILER_LAUNCHER: ccache
68-
CMAKE_CXX_COMPILER_LAUNCHER: ccache
6956
steps:
7057
- name: Checkout repository
7158
uses: actions/checkout@v4
@@ -83,12 +70,6 @@ jobs:
8370
activate-environment: true
8471
python-version: ${{ env.PYTHON_VERSION }}
8572

86-
- name: ccache
87-
uses: hendrikmuhs/[email protected]
88-
with:
89-
create-symlink: true
90-
key: ${{ github.job }}-${{ matrix.os }}
91-
9273
- name: Setup venv
9374
run: |
9475
[[ -f requirements-test.txt ]] && \

0 commit comments

Comments
 (0)