From 7cfebb66a80b7da4aca563830b5fd508f94e4b87 Mon Sep 17 00:00:00 2001 From: silverqx Date: Wed, 14 Aug 2024 23:43:22 +0200 Subject: [PATCH] workflows analyzers testing disable ccache --- .github/workflows/analyzers.yml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/.github/workflows/analyzers.yml b/.github/workflows/analyzers.yml index 9ecca05c7..5c95ff495 100644 --- a/.github/workflows/analyzers.yml +++ b/.github/workflows/analyzers.yml @@ -71,23 +71,6 @@ jobs: useLocalCache: true useCloudCache: false - # Don't use the default CCACHE_DIR path on self-hosted runners - # analyzers.yml and vcpkg-linux.yml use the same /ccache_vcpkg folder - - name: Ccache prepare environment - run: | - ccacheDirPath=$(realpath "$RUNNER_WORKSPACE/ccache_vcpkg") - echo "CCACHE_DIR=$ccacheDirPath" >> $GITHUB_ENV - - - name: Ccache print version and configuration - run: | - echo '::group::Print version' - ccache --version - echo '::endgroup::' - - echo '::group::Print ccache config' - ccache --show-config - echo '::endgroup::' - # Don't define VCPKG_DEFAULT_BINARY_CACHE as Linux VM image is strictly for GH actions use only - name: vcpkg prepare environment run: | @@ -173,10 +156,6 @@ jobs: run: | qmake -query QT_VERSION - - name: Ccache clear statistics - run: | - ccache --zero-stats - # CMAKE_DISABLE_PRECOMPILE_HEADERS=ON is correct (Clazy is failing with OFF) - name: TinyORM cmake configure (${{ env.TinyORMBuildName }}) working-directory: ${{ env.TinyORMPath }} @@ -185,7 +164,6 @@ jobs: -S . -B "$TinyORMBuildTree" -G Ninja - -D CMAKE_CXX_COMPILER_LAUNCHER:FILEPATH=ccache -D CMAKE_CXX_COMPILER:FILEPATH=${{ env.TINY_COMPILER_COMMAND }} -D CMAKE_TOOLCHAIN_FILE:FILEPATH="$VCPKG_INSTALLATION_ROOT/scripts/buildsystems/vcpkg.cmake" -D CMAKE_DISABLE_PRECOMPILE_HEADERS:BOOL=ON @@ -210,10 +188,6 @@ jobs: run: >- cmake --build . --target all --parallel $TINY_PARALLEL - - name: Ccache print statistics - run: | - ccache --show-stats --verbose - - name: libTinyOrm print .comment section working-directory: ${{ env.TinyORMBuildTree }} run: |