You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2020/10/08 17:11:48 UTC

[airflow] branch master updated: Bump cache version for kubernetes tests (#11355)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new 666e81a  Bump cache version for kubernetes tests (#11355)
666e81a is described below

commit 666e81ab4a468047b9f6869b9eaad6e92b5bc7dd
Author: Jarek Potiuk <ja...@polidea.com>
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
---
 .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 5c0f226..cb24ca5 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -656,10 +656,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"