Skip to content

Commit

Permalink
github CI: Update winetest download url's.
Browse files Browse the repository at this point in the history
madewokherd committed Dec 2, 2023

Verified

This commit was signed with the committer’s verified signature.
tyranron Kai Ren
1 parent 96d53fa commit c79e5f3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -129,7 +129,7 @@ jobs:
wine msiexec /i wine-gecko-${GECKO_VERSION}-x86_64.msi
- name: Run 64-bit Wine mscoree tests
run: |
wget -nc 'https://gitlab.winehq.org/wine/wine/-/jobs/artifacts/master/raw/winetest64.exe?job=build-winetest' -O winetest64.exe 1>&2
wget -nc 'https://gitlab.winehq.org/wine/wine/-/jobs/artifacts/master/raw/winetest64.exe?job=build-daily-winetest' -O winetest64.exe
wine64 winetest64.exe -x winetest64 >/dev/null
wine64 winetest64/mscoree_test.exe --list 2>/dev/null|sed 's/\r//'|tail -n +2|while read testname; do
echo BEGIN 64-BIT $testname TEST 1>&2
@@ -138,7 +138,7 @@ jobs:
done
- name: Run 32-bit Wine mscoree tests
run: |
wget -nc 'https://gitlab.winehq.org/wine/wine/-/jobs/artifacts/master/raw/winetest.exe?job=build-winetest' -O winetest.exe 1>&2
wget -nc 'https://gitlab.winehq.org/wine/wine/-/jobs/artifacts/master/raw/winetest.exe?job=build-daily-winetest' -O winetest.exe
wine winetest.exe -x winetest >/dev/null
wine winetest/mscoree_test.exe --list 2>/dev/null|sed 's/\r//'|tail -n +2|while read testname; do
echo BEGIN 32-BIT $testname TEST 1>&2
@@ -189,7 +189,7 @@ jobs:
run: wine64 msiexec /i wine-mono-*.msi 1>&2
- name: Run 64-bit Wine mscoree tests
run: |
wget -nc 'https://gitlab.winehq.org/wine/wine/-/jobs/artifacts/master/raw/winetest64.exe?job=build-winetest' -O winetest64.exe 1>&2
wget -nc 'https://gitlab.winehq.org/wine/wine/-/jobs/artifacts/master/raw/winetest64.exe?job=build-daily-winetest' -O winetest64.exe
wine64 winetest64.exe -x winetest64 >/dev/null
wine64 winetest64/mscoree_test.exe --list 2>/dev/null|sed 's/.$//'|tail -n +2|while read testname; do
echo BEGIN $testname TEST 1>&2
@@ -202,7 +202,7 @@ jobs:
fi
- name: Run 32-bit Wine mscoree tests
run: |
wget -nc 'https://gitlab.winehq.org/wine/wine/-/jobs/artifacts/master/raw/winetest.exe?job=build-winetest' -O winetest.exe
wget -nc 'https://gitlab.winehq.org/wine/wine/-/jobs/artifacts/master/raw/winetest.exe?job=build-daily-winetest' -O winetest.exe
wine winetest.exe -x winetest
wine winetest/mscoree_test.exe --list 2>/dev/null|sed 's/.$//'|tail -n +2|while read testname; do
echo BEGIN $testname TEST

0 comments on commit c79e5f3

Please sign in to comment.