This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v1-10-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit e620ff85b37c0843d2b850fed0f7efd99833f4b6 Author: Jarek Potiuk <[email protected]> AuthorDate: Thu Oct 8 19:10:46 2020 +0200 Bump cache version for kubernetes tests (#11355) Seems that the k8s cache for virtualenv got broken during the recent problems. This commits bumps the cache version to make it afresh (cherry picked from commit 666e81ab4a468047b9f6869b9eaad6e92b5bc7dd) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c433d82..85f8e27 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -561,10 +561,10 @@ jobs: - name: "Cache virtualenv for kubernetes testing" uses: actions/cache@v2 env: - cache-name: cache-kubernetes-tests-virtualenv-v3 + cache-name: cache-kubernetes-tests-virtualenv-v4 with: path: .build/.kubernetes_venv - key: "${{ env.cache-name }}-${{ github.job }}-${{ hashFiles('setup.py') }}-v1" + key: "${{ env.cache-name }}-${{ github.job }}-${{ hashFiles('setup.py') }}" - name: "Kubernetes Tests" run: ./scripts/ci/kubernetes/ci_run_kubernetes_tests.sh - name: "Upload KinD logs"
