diff --git a/.gitlab/ci/build.yml b/.gitlab/ci/build.yml index e3a3c31f5c..9a03dc24d7 100644 --- a/.gitlab/ci/build.yml +++ b/.gitlab/ci/build.yml @@ -537,7 +537,7 @@ pytest_build_system_macos: extends: - .test_build_system_template - .before_script:build:macos - - .after_script:build:macos:ccache:upload-when-fail + - .after_script:build:macos:upload-when-fail - .rules:build:macos tags: - macos_shell @@ -552,6 +552,7 @@ pytest_build_system_macos: junit: XUNIT_RESULT.xml variables: PYENV_VERSION: "3.8" + CI_CCACHE_DISABLE: "1" # ccache: error: Read-only file system build_docker: extends: diff --git a/.gitlab/ci/common.yml b/.gitlab/ci/common.yml index bad1d9defd..9b45d0e05b 100644 --- a/.gitlab/ci/common.yml +++ b/.gitlab/ci/common.yml @@ -207,13 +207,12 @@ variables: - *setup_tools_and_idf_python_venv - fetch_submodules -.after_script:build:macos:ccache:upload-when-fail: +.after_script:build:macos:upload-when-fail: after_script: # macos is running shell executor, which means it would use # the system installed /usr/local/bin/python3 by default. # Ensure pyenv and PYENV_VERSION installed - eval "$(pyenv init -)" - - *show_ccache_statistics - *upload_failed_job_log_artifacts .before_script:build: