- fixed continuous integration of Windows targets

This commit is contained in:
alexey.lysiuk 2022-11-26 09:39:48 +02:00
parent f256e7bb3d
commit d4f4b9b599
1 changed files with 4 additions and 0 deletions

View File

@ -94,6 +94,10 @@ jobs:
- name: Configure - name: Configure
shell: bash shell: bash
run: | 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 }} . 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 - name: Build