2
0
mirror of https://github.com/boostorg/build.git synced 2026-01-19 04:02:14 +00:00

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
.ci/macos-build.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env bash
set -e
cd src/engine
./build.sh ${TOOLSET}
./b2 -v
cd ../..

6
.ci/macos-test.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
set -e
cd test
./test_all.py ${TOOLSET}
cd ..

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