mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 06:42:12 +00:00
- fixed continuous integration of Windows targets
This commit is contained in:
parent
f256e7bb3d
commit
d4f4b9b599
1 changed files with 4 additions and 0 deletions
4
.github/workflows/continuous_integration.yml
vendored
4
.github/workflows/continuous_integration.yml
vendored
|
@ -94,6 +94,10 @@ jobs:
|
|||
- name: Configure
|
||||
shell: bash
|
||||
run: |
|
||||
if [[ "${{ runner.os }}" == 'Windows' ]]; then
|
||||
# Remove Strawberry Perl from PATH environment variable to avoid usage of libraries it provides
|
||||
export PATH=`echo $PATH | tr ":" "\n" | grep -v "Strawberry" | tr "\n" ":"`
|
||||
fi
|
||||
cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} -DCMAKE_PREFIX_PATH=`pwd`/build/zmusic -DPK3_QUIET_ZIPDIR=ON ${{ matrix.config.extra_options }} .
|
||||
|
||||
- name: Build
|
||||
|
|
Loading…
Reference in a new issue