@@ -229,14 +229,10 @@ jobs:
229
229
run : make
230
230
- name : Install
231
231
run : sudo make install
232
- - name : normalize template path
233
- id : normalize_template_path
234
- # `hashFiles` cannot use `..` as a path component, so generate a normalized path here.
235
- run : echo "NORMALIZED=$(realpath templates/${{ matrix.template }})" >> "$GITHUB_OUTPUT"
236
- - name : Cache image used by ${{ steps.normalize_template_path.outputs.NORMALIZED }}
232
+ - name : Cache image used by templates/${{ matrix.template }}
237
233
uses : ./.github/actions/setup_cache_for_template
238
234
with :
239
- template : ${{ steps.normalize_template_path.outputs.NORMALIZED }}
235
+ template : templates/ ${{ matrix.template }}
240
236
- name : Install test dependencies
241
237
run : |
242
238
sudo apt-get update
@@ -413,14 +409,10 @@ jobs:
413
409
run : make
414
410
- name : Install
415
411
run : make install
416
- - name : normalize template path
417
- id : normalize_template_path
418
- # `hashFiles` cannot use `..` as a path component, so generate a normalized path here.
419
- run : echo "NORMALIZED=$(realpath templates/${{ matrix.template }})" >> "$GITHUB_OUTPUT"
420
- - name : Cache image used by ${{ steps.normalize_template_path.outputs.NORMALIZED }}
412
+ - name : Cache image used by templates/${{ matrix.template }}
421
413
uses : ./.github/actions/setup_cache_for_template
422
414
with :
423
- template : ${{ steps.normalize_template_path.outputs.NORMALIZED }}
415
+ template : templates/ ${{ matrix.template }}
424
416
- name : Install test dependencies
425
417
run : brew install bash coreutils jq
426
418
- name : Uninstall qemu
0 commit comments