paralellise and fix caching

This commit is contained in:
kjeld Schouten-Lebbing
2021-08-17 13:46:19 +02:00
parent 410189b7eb
commit 75e1361e1e
2 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -27,7 +27,7 @@ jobs:
- name: Cache helm repo cache
uses: actions/cache@v2
with:
key: helmrepocache
key: helmrepocache-${{ github.sha }}
path: |
~/.cache/helm/repository
~/.config/helm/repositories.yaml
@@ -55,7 +55,7 @@ jobs:
- name: Cache helm repo cache
uses: actions/cache@v2
with:
key: helmrepocache
key: helmrepocache-${{ github.sha }}
path: |
~/.cache/helm/repository
~/.config/helm/repositories.yaml
@@ -176,7 +176,7 @@ jobs:
- name: Cache helm repo cache
uses: actions/cache@v2
with:
key: helmrepocache
key: helmrepocache-${{ github.sha }}
path: |
~/.cache/helm/repository
~/.config/helm/repositories.yaml
+4 -4
View File
@@ -25,7 +25,7 @@ jobs:
- name: Cache helm repo cache
uses: actions/cache@v2
with:
key: helmrepocache
key: helmrepocache-${{ github.sha }}-${{ github.sha }}
path: |
~/.cache/helm/repository
~/.config/helm/repositories.yaml
@@ -91,7 +91,7 @@ jobs:
- name: Cache helm repo cache
uses: actions/cache@v2
with:
key: helmrepocache
key: helmrepocache-${{ github.sha }}
path: |
~/.cache/helm/repository
~/.config/helm/repositories.yaml
@@ -244,7 +244,7 @@ jobs:
- name: Cache helm repo cache
uses: actions/cache@v2
with:
key: helmrepocache
key: helmrepocache-${{ github.sha }}
path: |
~/.cache/helm/repository
~/.config/helm/repositories.yaml
@@ -270,7 +270,7 @@ jobs:
for train in stable incubator develop non-free deprecated
do
for chart in master/charts/${train}/*; do
removetask "${train}" "${chart}"
removetask "${train}" "${chart}" &
done
done
wait