Skip to content

Commit

Permalink
Workflow: Fix PSV build error
Browse files Browse the repository at this point in the history
  • Loading branch information
xfangfang committed Oct 8, 2024
1 parent ccba234 commit 7f85c76
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ jobs:
key: SDL-vita-pvr-3.9

- name: Download PVR_PSP2 (GLES)
if: ${{ !steps.restore-pvr-cache.outputs.cache-hit }}
if: ${{ steps.restore-pvr-cache.outputs.cache-hit == 'false' }}
run: |
pvr_psp2_version=3.9
Expand Down Expand Up @@ -546,7 +546,7 @@ jobs:
rm -rf /tmp/PSVita_Release
- uses: actions/cache/save@v4
if: ${{ !steps.restore-pvr-cache.outputs.cache-hit }}
if: ${{ steps.restore-pvr-cache.outputs.cache-hit == 'false' }}
with:
path: /vita/dependencies
key: SDL-vita-pvr-3.9
Expand All @@ -568,7 +568,7 @@ jobs:
run: vdpm mbedtls libass harfbuzz fribidi freetype libpng libwebp

- name: Build Dependencies
if: ${{ !steps.restore-common-deps-cache.outputs.cache-hit }}
if: ${{ steps.restore-common-deps-cache.outputs.cache-hit == 'false' }}
run: |
mkdir -p /vita/common_deps
apk add patch
Expand All @@ -590,7 +590,7 @@ jobs:
ls -lah /vita/common_deps/
- uses: actions/cache/save@v4
if: ${{ !steps.restore-common-deps-cache.outputs.cache-hit }}
if: ${{ steps.restore-common-deps-cache.outputs.cache-hit == 'false' }}
with:
path: /vita/common_deps
key: Dep-vita-${{ hashFiles('**/VITABUILD') }}
Expand Down

0 comments on commit 7f85c76

Please sign in to comment.