Skip to content

Commit

Permalink
CI: Apply workaround for actions/runner-images#6627.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpd002 committed Nov 28, 2022
1 parent ad3b855 commit 4cf4ba4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,11 @@ jobs:
env:
LONG_HASH: ${{ github.sha }}
- name: Generate CMake Project
#Apply workaround for https://github.com/actions/runner-images/issues/6627, remove when it's fixed
run: |
mkdir build
cd build
cmake .. -G"${{ matrix.build-type }}" -A ${{ matrix.target-platform }} -T v141_xp -DUSE_QT=on -DBUILD_LIBRETRO_CORE=yes
cmake .. -G"${{ matrix.build-type }}" -A ${{ matrix.target-platform }} -T v141_xp -DUSE_QT=on -DBUILD_LIBRETRO_CORE=yes -DCMAKE_IGNORE_PATH=C:/Strawberry/perl/bin;C:/Strawberry/c/lib
- name: Build
run: |
cd build
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-windows_psf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,11 @@ jobs:
env:
LONG_HASH: ${{ github.sha }}
- name: Generate CMake Project
#Apply workaround for https://github.com/actions/runner-images/issues/6627, remove when it's fixed
run: |
mkdir build
cd build
cmake .. -G"${{ matrix.build-type }}" -A ${{ matrix.target-platform }} -T v141_xp -DBUILD_PLAY=off -DBUILD_TESTS=off -DBUILD_PSFPLAYER=on -DBUILD_AOT_CACHE=${{ matrix.aot-build }}
cmake .. -G"${{ matrix.build-type }}" -A ${{ matrix.target-platform }} -T v141_xp -DBUILD_PLAY=off -DBUILD_TESTS=off -DBUILD_PSFPLAYER=on -DBUILD_AOT_CACHE=${{ matrix.aot-build }} -DCMAKE_IGNORE_PATH=C:/Strawberry/perl/bin;C:/Strawberry/c/lib
env:
DXSDK_DIR: '${{ github.workspace }}\DX_SDK'
- name: Build
Expand Down

0 comments on commit 4cf4ba4

Please sign in to comment.