ci: Build crosstests in a dedicated CI job.

Mostly to avoid polluting other logs and artifacts, and also to avoid
recompiling crosstests over and over. Eventually the artifacts produced
at this stage should be run on native Windows.
This commit is contained in:
Giovanni Mascellani
2023-09-21 15:35:11 +02:00
committed by Alexandre Julliard
parent 74d79c7e45
commit 81da13b9e2
Notes: Alexandre Julliard 2023-09-26 22:47:59 +02:00
Approved-by: Henri Verbeet (@hverbeet)
Approved-by: Alexandre Julliard (@julliard)
Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/359
4 changed files with 49 additions and 4 deletions

View File

@@ -11,9 +11,9 @@ set -Eeuxo pipefail
rm -fr build
mkdir build
cd build
../configure --enable-demos && make -j$(nproc) && make -j$(nproc) crosstest && make -j$(nproc) check || touch ../pipeline_failed
../configure --enable-demos && make -j$(nproc) && make -j$(nproc) check || touch ../pipeline_failed
mkdir -p ../artifacts/$COMMIT
rsync -Rr doc/* tests/*.exe test-suite.log tests/*.log tests/*/*.log ../artifacts/$COMMIT
rsync -Rr doc/* test-suite.log tests/*.log tests/*/*.log ../artifacts/$COMMIT
git reset --hard