mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-11-21 16:46:41 -08:00
20 lines
323 B
Plaintext
20 lines
323 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
echo "Building $(git log -1)"
|
||
|
echo "---"
|
||
|
|
||
|
COMMIT=$(git rev-parse --short HEAD)
|
||
|
|
||
|
set -Eeuxo pipefail
|
||
|
|
||
|
./autogen.sh
|
||
|
rm -fr build
|
||
|
mkdir build
|
||
|
cd build
|
||
|
../configure && make -j$(nproc) crosstest || touch ../pipeline_failed
|
||
|
|
||
|
mkdir -p ../artifacts/$COMMIT
|
||
|
rsync -Rr tests/*.exe ../artifacts/$COMMIT
|
||
|
|
||
|
git reset --hard
|