Partially reverts commit 67f2da2a8d
which
broke ccache cache as the job configurations were overriding the default
cache configuration from .wine-build instead of extending it.
15 lines
245 B
Bash
Executable file
15 lines
245 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "Building $(git log -1)"
|
|
echo "---"
|
|
|
|
set -Eeuxo pipefail
|
|
|
|
./tools/make_requests
|
|
./tools/make_makefiles
|
|
autoreconf -f
|
|
|
|
cd build64
|
|
../configure -q -C --enable-archs=i386,x86_64,aarch64 --with-mingw=clang
|
|
make -s -j$(nproc)
|
|
cd ..
|