mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-04-11 18:57:47 +00:00
Add apple silicon test
This commit is contained in:
parent
bc4ff8c6b2
commit
23233bd4c9
9
.github/workflows/tests.yml
vendored
9
.github/workflows/tests.yml
vendored
@ -30,6 +30,15 @@ jobs:
|
||||
run: |
|
||||
scripts/tests-macos-amd64.sh
|
||||
|
||||
tests-macos-arm64:
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Run tests macos-arm64
|
||||
run: |
|
||||
scripts/tests-macos-arm64.sh
|
||||
|
||||
tests-windows-i386:
|
||||
runs-on: windows-2019
|
||||
|
||||
|
7
scripts/tests-macos-arm64.sh
Executable file
7
scripts/tests-macos-arm64.sh
Executable file
@ -0,0 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
git submodule init && git submodule update
|
||||
./waf configure -T release --sanitize=address,undefined --disable-warns --tests --prefix=out/ $* &&
|
||||
./waf install &&
|
||||
cd out &&
|
||||
DYLD_LIBRARY_PATH=bin/ ./unittest || exit 1
|
Loading…
Reference in New Issue
Block a user