Disable CI sourcehook testing (temporarily)

This commit is contained in:
Kenzzer 2025-04-19 18:36:06 +00:00
parent df87bded9f
commit 52eb132099
No known key found for this signature in database
GPG Key ID: 64C3FD4332686DC1

View File

@ -98,36 +98,36 @@ jobs:
python ../configure.py --enable-optimize --sdks=${{ join(fromJSON(env.SDKS)) }} --hl2sdk-root=${{ env.DEPENDENCIES_ROOT }} python ../configure.py --enable-optimize --sdks=${{ join(fromJSON(env.SDKS)) }} --hl2sdk-root=${{ env.DEPENDENCIES_ROOT }}
ambuild ambuild
- name: Test SourceHook (Optimized) #- name: Test SourceHook (Optimized)
working-directory: metamod-source # working-directory: metamod-source
shell: bash # shell: bash
# SourceHook tests are busted on Windows # # SourceHook tests are busted on Windows
continue-on-error: ${{ startsWith(runner.os, 'Windows') }} # continue-on-error: ${{ startsWith(runner.os, 'Windows') }}
run: | # run: |
mkdir build-sh-opt && cd build-sh-opt # mkdir build-sh-opt && cd build-sh-opt
python ../configure.py --enable-optimize --enable-tests --sdks= # python ../configure.py --enable-optimize --enable-tests --sdks=
ambuild # ambuild
cd ./core/sourcehook/test/test_sourcehook # cd ./core/sourcehook/test/test_sourcehook
if [ -d "${{ matrix.os_short }}-x86" ]; then # if [ -d "${{ matrix.os_short }}-x86" ]; then
./${{ matrix.os_short }}-x86/test_sourcehook -v # ./${{ matrix.os_short }}-x86/test_sourcehook -v
fi # fi
if [ -d "${{ matrix.os_short }}-x86_64" ]; then # if [ -d "${{ matrix.os_short }}-x86_64" ]; then
./${{ matrix.os_short }}-x86_64/test_sourcehook -v # ./${{ matrix.os_short }}-x86_64/test_sourcehook -v
fi # fi
- name: Test SourceHook (Debug) #- name: Test SourceHook (Debug)
working-directory: metamod-source # working-directory: metamod-source
shell: bash # shell: bash
# SourceHook tests are busted on Windows # SourceHook tests are busted on Windows
continue-on-error: ${{ startsWith(runner.os, 'Windows') }} # continue-on-error: ${{ startsWith(runner.os, 'Windows') }}
run: | # run: |
mkdir build-sh-debug && cd build-sh-debug # mkdir build-sh-debug && cd build-sh-debug
python ../configure.py --enable-debug --enable-tests --sdks= # python ../configure.py --enable-debug --enable-tests --sdks=
ambuild # ambuild
cd ./core/sourcehook/test/test_sourcehook # cd ./core/sourcehook/test/test_sourcehook
if [ -d "${{ matrix.os_short }}-x86" ]; then # if [ -d "${{ matrix.os_short }}-x86" ]; then
./${{ matrix.os_short }}-x86/test_sourcehook -v # ./${{ matrix.os_short }}-x86/test_sourcehook -v
fi # fi
if [ -d "${{ matrix.os_short }}-x86_64" ]; then # if [ -d "${{ matrix.os_short }}-x86_64" ]; then
./${{ matrix.os_short }}-x86_64/test_sourcehook -v # ./${{ matrix.os_short }}-x86_64/test_sourcehook -v
fi # fi