Skip to content

Commit

Permalink
Troubleshoot variable refs in Pi image tests
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Jun 4, 2024
1 parent c94a883 commit 5e5ff2a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/setup_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
uses: actions/cache@v3
id: lfs-cache
with:
path: ${{ GITHUB_WORKSPACE }}/pi_image_3.img.xz
path: ${{ github.workspace }}/pi_image_3.img.xz
key: ${{ runner.os }}-lfs-${{ hashFiles('/core/pi_image_3.img.xz') }}-v1
- name: Ensure LFS files are pulled
if: steps.lfs-cache.outputs.cache-hit != 'true'
Expand All @@ -52,14 +52,14 @@ jobs:
id: lfs-cache-save
uses: actions/cache/save@v3
with:
path: ${{ GITHUB_WORKSPACE }}/pi_image_3.img.xz
key: ${{ runner.os }}-lfs-${{ hashFiles('${{ GITHUB_WORKSPACE }}/pi_image_3.img.xz') }}-v1
path: ${{ github.workspace }}/pi_image_3.img.xz
key: ${{ runner.os }}-lfs-${{ hashFiles('${{ github.workspace }}/pi_image_3.img.xz') }}-v1

- name: Test chroot installation
uses: pguyot/arm-runner-action@v2
with:
optimize_image: false
base_image: file://${{ GITHUB_WORKSPACE }}/pi_image_3.img.xz
base_image: file://${{ github.workspace }}/pi_image_3.img.xz
cpu: cortex-a53
copy_repository_path: /core
commands: |
Expand Down

0 comments on commit 5e5ff2a

Please sign in to comment.