Skip to content

Commit 768faec

Browse files
committed
Remove ccache action
1 parent 5c8f6e4 commit 768faec

File tree

4 files changed

+0
-36
lines changed

4 files changed

+0
-36
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,6 @@ jobs:
113113
run: sudo ./.github/workflows/posix-deps-apt.sh
114114
- name: Add ccache to PATH
115115
run: echo "PATH=/usr/lib/ccache:$PATH" >> "$GITHUB_ENV"
116-
- name: Configure ccache action
117-
uses: hendrikmuhs/[email protected]
118-
with:
119-
save: false
120116
- name: Configure CPython
121117
run: |
122118
# Build Python with the libpython dynamic library
@@ -301,10 +297,6 @@ jobs:
301297
- name: Add ccache to PATH
302298
run: |
303299
echo "PATH=/usr/lib/ccache:$PATH" >> "$GITHUB_ENV"
304-
- name: Configure ccache action
305-
uses: hendrikmuhs/[email protected]
306-
with:
307-
save: false
308300
- name: Configure CPython
309301
run: ./configure CFLAGS="-fdiagnostics-format=json" --config-cache --enable-slower-safety --with-pydebug --with-openssl="$OPENSSL_DIR"
310302
- name: Build CPython
@@ -362,10 +354,6 @@ jobs:
362354
- name: Add ccache to PATH
363355
run: |
364356
echo "PATH=/usr/lib/ccache:$PATH" >> "$GITHUB_ENV"
365-
- name: Configure ccache action
366-
uses: hendrikmuhs/[email protected]
367-
with:
368-
save: false
369357
- name: Configure CPython
370358
run: |
371359
./configure CFLAGS="-fdiagnostics-format=json" \
@@ -449,10 +437,6 @@ jobs:
449437
- name: Add ccache to PATH
450438
run: |
451439
echo "PATH=/usr/lib/ccache:$PATH" >> "$GITHUB_ENV"
452-
- name: Configure ccache action
453-
uses: hendrikmuhs/[email protected]
454-
with:
455-
save: false
456440
- name: Setup directory envs for out-of-tree builds
457441
run: |
458442
echo "CPYTHON_RO_SRCDIR=$(realpath -m "${GITHUB_WORKSPACE}"/../cpython-ro-srcdir)" >> "$GITHUB_ENV"
@@ -571,11 +555,6 @@ jobs:
571555
- name: Add ccache to PATH
572556
run: |
573557
echo "PATH=/usr/lib/ccache:$PATH" >> "$GITHUB_ENV"
574-
- name: Configure ccache action
575-
uses: hendrikmuhs/[email protected]
576-
with:
577-
save: ${{ github.event_name == 'push' }}
578-
max-size: "200M"
579558
- name: Configure CPython
580559
run: ./configure --config-cache --with-address-sanitizer --without-pymalloc
581560
- name: Build CPython

.github/workflows/reusable-san.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,6 @@ jobs:
7272
- name: Add ccache to PATH
7373
run: |
7474
echo "PATH=/usr/lib/ccache:$PATH" >> "$GITHUB_ENV"
75-
- name: Configure ccache action
76-
uses: hendrikmuhs/[email protected]
77-
with:
78-
save: ${{ github.event_name == 'push' }}
79-
max-size: "200M"
8075
- name: Configure CPython
8176
run: >-
8277
./configure

.github/workflows/reusable-ubuntu.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,6 @@ jobs:
6464
- name: Add ccache to PATH
6565
run: |
6666
echo "PATH=/usr/lib/ccache:$PATH" >> "$GITHUB_ENV"
67-
- name: Configure ccache action
68-
uses: hendrikmuhs/[email protected]
69-
with:
70-
save: ${{ github.event_name == 'push' }}
71-
max-size: "200M"
7267
- name: Setup directory envs for out-of-tree builds
7368
run: |
7469
echo "CPYTHON_RO_SRCDIR=$(realpath -m "${GITHUB_WORKSPACE}"/../cpython-ro-srcdir)" >> "$GITHUB_ENV"

.github/workflows/reusable-wasi.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,6 @@ jobs:
4242
mkdir "${WASI_SDK_PATH}" && \
4343
curl -s -S --location "https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${WASI_SDK_VERSION}/wasi-sdk-${WASI_SDK_VERSION}.0-x86_64-linux.tar.gz" | \
4444
tar --strip-components 1 --directory "${WASI_SDK_PATH}" --extract --gunzip
45-
- name: "Configure ccache action"
46-
uses: hendrikmuhs/[email protected]
47-
with:
48-
save: ${{ github.event_name == 'push' }}
49-
max-size: "200M"
5045
- name: "Add ccache to PATH"
5146
run: echo "PATH=/usr/lib/ccache:$PATH" >> "$GITHUB_ENV"
5247
- name: "Install Python"

0 commit comments

Comments
 (0)