Xrasher/scripts/gha/build_apple.sh

15 lines
376 B
Bash
Raw Normal View History

#!/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
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