Add macos install, build, and test trio of scripts.

This commit is contained in:
Rene Rivera
2025-11-27 22:50:53 -06:00
parent adec4d05ec
commit 6f663286b9
3 changed files with 18 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
#!/usr/bin/env bash
set -e
cd src/engine
./build.sh ${TOOLSET}
./b2 -v
cd ../..
+6
View File
@@ -0,0 +1,6 @@
#!/usr/bin/env bash
set -e
cd test
./test_all.py ${TOOLSET}
cd ..
+5 -1
View File
@@ -120,5 +120,9 @@ for:
- matrix:
only:
- job_build: 'XcodeBuild'
build_script:
install:
- ./.ci/macos-install.sh
build_script:
- ./.ci/macos-build.sh
test_script:
- ./.ci/macos-test.sh