2024-08-12 09:02:41 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
. scripts/lib.sh
|
|
|
|
|
|
|
|
cd $GITHUB_WORKSPACE || die
|
|
|
|
|
|
|
|
pushd hlsdk || die
|
|
|
|
./waf configure build install --destdir=../bin || die
|
|
|
|
popd
|
|
|
|
|
|
|
|
./waf configure --enable-utils --enable-tests --enable-lto build install --destdir=bin || die_configure
|
|
|
|
|
2024-10-28 20:58:46 +11:00
|
|
|
cp -vr /Library/Frameworks/SDL2.framework bin
|
|
|
|
|
2024-08-12 09:02:41 +03:00
|
|
|
mkdir -p artifacts/
|
2024-08-12 09:43:02 +03:00
|
|
|
tar -cJvf artifacts/xash3d-fwgs-apple-$ARCH.tar.xz -C bin . # skip the bin directory from resulting tar archive
|