From 0fab578ffee7dabaea3dce7c79bea8494b871648 Mon Sep 17 00:00:00 2001 From: Joris Vaillant Date: Fri, 2 Feb 2024 17:15:55 +0100 Subject: [PATCH] CI: Reduce ccache compresslevel (recommanded setting in the documentation) --- .github/workflows/linux.yml | 2 +- .github/workflows/macos-linux-conda.yml | 2 +- .github/workflows/windows-conda.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index b459755e03..8858806192 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -38,7 +38,7 @@ jobs: CCACHE_BASEDIR: "${GITHUB_WORKSPACE}" CCACHE_DIR: "${GITHUB_WORKSPACE}/.ccache" CCACHE_COMPRESS: true - CCACHE_COMPRESSLEVEL: 6 + CCACHE_COMPRESSLEVEL: 5 steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/macos-linux-conda.yml b/.github/workflows/macos-linux-conda.yml index 8f0f402481..8c8a6cf9c4 100644 --- a/.github/workflows/macos-linux-conda.yml +++ b/.github/workflows/macos-linux-conda.yml @@ -33,7 +33,7 @@ jobs: CCACHE_BASEDIR: "${GITHUB_WORKSPACE}" CCACHE_DIR: "${GITHUB_WORKSPACE}/.ccache" CCACHE_COMPRESS: true - CCACHE_COMPRESSLEVEL: 6 + CCACHE_COMPRESSLEVEL: 5 BUILD_ADVANCED_TESTING: ${{ matrix.BUILD_ADVANCED_TESTING }} strategy: diff --git a/.github/workflows/windows-conda.yml b/.github/workflows/windows-conda.yml index 43dc699ec0..1593abfd71 100644 --- a/.github/workflows/windows-conda.yml +++ b/.github/workflows/windows-conda.yml @@ -32,7 +32,7 @@ jobs: CCACHE_BASEDIR: "${GITHUB_WORKSPACE}" CCACHE_DIR: "${GITHUB_WORKSPACE}/.ccache" CCACHE_COMPRESS: true - CCACHE_COMPRESSLEVEL: 6 + CCACHE_COMPRESSLEVEL: 5 strategy: fail-fast: false