mirror of
https://github.com/boostorg/build.git
synced 2026-07-21 13:13:39 +00:00
23 lines
736 B
YAML
23 lines
736 B
YAML
steps:
|
|
- bash: |
|
|
set -e
|
|
uname -a
|
|
ls -laF /Applications
|
|
sudo xcode-select -switch ${XCODE_APP}
|
|
which clang++
|
|
displayName: Install
|
|
- bash: |
|
|
set -e
|
|
./bootstrap.sh ${TOOLSET}
|
|
./b2 --prefix=$HOME/temp/.b2 install ${TOOLSET:+toolset=$TOOLSET}
|
|
rm ./b2
|
|
export PATH=$HOME/temp/.b2/bin:$PATH
|
|
cd $HOME
|
|
touch build.jam
|
|
b2 -v
|
|
b2 -n --debug-configuration ${TOOLSET:+toolset=$TOOLSET}
|
|
displayName: Bootstrap
|
|
- { bash: "./.ci/b2_example.sh example/hello", displayName: "example/hello" }
|
|
- { bash: "./.ci/b2_example.sh example/libraries", displayName: "example/libraries" }
|
|
- { bash: "./.ci/b2_example.sh example/make", displayName: "example/make" }
|