Skip to content

Commit 56a6bd2

Browse files
committed
Fix after merge
1 parent c1a1b2b commit 56a6bd2

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/test_deploy.yml

+28
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ jobs:
5656
python -m pip install --upgrade pip
5757
python -m pip install coveralls poetry wheel twine
5858
python -m pip install .[all]
59+
- name: Install renku into cache
60+
if: steps.cache.outputs.cache-hit == 'true'
61+
run: python -m pip install --no-deps .
5962
- name: Set Git config
6063
run: |
6164
git config --global --add user.name "Renku @ SDSC"
@@ -91,6 +94,9 @@ jobs:
9194
python -m pip install --upgrade pip
9295
python -m pip install coveralls poetry wheel twine
9396
python -m pip install .[all]
97+
- name: Install renku into cache
98+
if: steps.cache.outputs.cache-hit == 'true'
99+
run: python -m pip install --no-deps .
94100
- name: Set Git config
95101
run: |
96102
git config --global --add user.name "Renku @ SDSC"
@@ -120,10 +126,14 @@ jobs:
120126
renku/templates
121127
key: ${{env.CACHE_PREFIX}}-${{ runner.os }}-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-${{hashFiles('poetry.lock')}}-${{hashFiles('build.py')}}
122128
- name: Install dependencies
129+
if: steps.cache.outputs.cache-hit != 'true' || 'refs/heads/master' == github.ref || startsWith(github.ref, 'refs/tags/')
123130
run: |
124131
python -m pip install --upgrade pip
125132
python -m pip install coveralls poetry wheel twine
126133
pip install .[all]
134+
- name: Install renku into cache
135+
if: steps.cache.outputs.cache-hit == 'true'
136+
run: python -m pip install --no-deps .
127137
- name: Build Package
128138
env:
129139
POETRY_VIRTUALENVS_CREATE: false
@@ -163,6 +173,9 @@ jobs:
163173
python -m pip install --upgrade pip
164174
python -m pip install coveralls poetry wheel twine
165175
python -m pip install .[all]
176+
- name: Install renku into cache
177+
if: steps.cache.outputs.cache-hit == 'true'
178+
run: python -m pip install --no-deps .
166179
- name: Set Git config
167180
run: |
168181
git config --global --add user.name "Renku @ SDSC"
@@ -214,6 +227,9 @@ jobs:
214227
python -m pip install --upgrade pip
215228
python -m pip install coveralls poetry wheel twine
216229
python -m pip install .[all]
230+
- name: Install renku into cache
231+
if: steps.cache.outputs.cache-hit == 'true'
232+
run: python -m pip install --no-deps .
217233
- name: Set Git config
218234
run: |
219235
git config --global --add user.name "Renku @ SDSC"
@@ -271,6 +287,9 @@ jobs:
271287
python -m pip install --upgrade pip
272288
python -m pip install coveralls poetry wheel twine
273289
python -m pip install .[all]
290+
- name: Install renku into cache
291+
if: steps.cache.outputs.cache-hit == 'true'
292+
run: python -m pip install --no-deps .
274293
- name: Set Git config
275294
run: |
276295
git config --global --add user.name "Renku @ SDSC"
@@ -328,6 +347,9 @@ jobs:
328347
python -m pip install --upgrade pip
329348
python -m pip install coveralls poetry wheel twine
330349
python -m pip install .[all]
350+
- name: Install renku into cache
351+
if: steps.cache.outputs.cache-hit == 'true'
352+
run: python -m pip install --no-deps .
331353
- name: Set Git config
332354
run: |
333355
git config --global --add user.name "Renku @ SDSC"
@@ -528,6 +550,9 @@ jobs:
528550
python -m pip install --upgrade pip
529551
python -m pip install coveralls poetry wheel twine
530552
python -m pip install .[all]
553+
- name: Install renku into cache
554+
if: steps.cache.outputs.cache-hit == 'true'
555+
run: python -m pip install --no-deps .
531556
- name: Set Git config
532557
run: |
533558
git config --global --add user.name "Renku @ SDSC"
@@ -595,6 +620,9 @@ jobs:
595620
python -m pip install --upgrade pip
596621
python -m pip install coveralls poetry wheel twine
597622
python -m pip install .[all]
623+
- name: Install renku into cache
624+
if: steps.cache.outputs.cache-hit == 'true'
625+
run: python -m pip install --no-deps .
598626
- name: Set Git config
599627
run: |
600628
git config --global --add user.name "Renku @ SDSC"

0 commit comments

Comments
 (0)