source-engine/scripts/tests-macos-arm64.sh
2024-02-29 22:38:56 +08:00

8 lines
241 B
Bash
Executable File

#!/bin/sh
git submodule init && git submodule update
python3 ./waf configure -T release --sanitize=address,undefined --disable-warns --tests --prefix=out/ $* &&
python3 ./waf install &&
cd out &&
DYLD_LIBRARY_PATH=bin/ ./unittest || exit 1