mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-09-13 09:16:14 -07:00
dbc5e7d07c
A driver program is introduced to coordinate test running on Windows, similarly to what "make test" does on Linux and macOS.
28 lines
750 B
Bash
Executable File
28 lines
750 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Building $(git log -1)"
|
|
echo "---"
|
|
|
|
COMMIT=$(printf '%03d-%s' $(git cherry $CI_MERGE_REQUEST_DIFF_BASE_SHA HEAD^ | wc -l) $(git rev-parse --short HEAD))
|
|
|
|
set -Eeuxo pipefail
|
|
|
|
# Building with -Wno-array-bounds because MinGW headers currently emit
|
|
# a lot of those
|
|
|
|
./autogen.sh
|
|
rm -fr build
|
|
mkdir build
|
|
cd build
|
|
../configure CROSSCC64="x86_64-w64-mingw32-gcc -Wno-array-bounds -Werror" CROSSCC32="i686-w64-mingw32-gcc -Wno-array-bounds -Werror" && \
|
|
make -j$(nproc) crosstest || \
|
|
touch ../pipeline_failed
|
|
|
|
mkdir -p ../artifacts/$COMMIT
|
|
rsync -Rr config.log tests/*.txt tests/*.exe ../artifacts/$COMMIT
|
|
|
|
# Make the driver easily available to the Windows CI job
|
|
cp tests/driver.cross64.exe ../artifacts
|
|
|
|
git reset --hard
|