File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
.github/actions/build-test/windows Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 9191 rm ${{ inputs.BOOST_ARCHIVE_NAME }}
9292 cd ${{ inputs.BOOST_FOLDER_NAME }}
9393 .\bootstrap.bat
94+ # Build the libs for:
95+ # - Atomic - https://www.boost.org/libs/atomic/
96+ # - Thread - https://www.boost.org/libs/thread/
97+ # - Chrono - https://www.boost.org/libs/chrono/
9498 .\b2 address-model=${{ inputs.ARCH_ADDRESS_MODEL }} --with-atomic --with-thread --with-chrono install
9599 cd ..
96100 Remove-Item ${{ inputs.BOOST_FOLDER_NAME }} -Recurse -Force
Original file line number Diff line number Diff line change @@ -15,5 +15,8 @@ TARBALL_NAME=boost_$(echo "$1" | tr . _)
1515curl --fail --silent --show-error --location " https://archives.boost.io/release/${1} /source/${TARBALL_NAME} .tar.gz" | tar xzf -
1616pushd " ${TARBALL_NAME} "
1717./bootstrap.sh
18+ # Build the libs for:
19+ # - Thread - https://www.boost.org/libs/thread/
20+ # - Atomic - https://www.boost.org/libs/atomic/
1821./b2 --with-thread --with-chrono install
1922popd
You can’t perform that action at this time.
0 commit comments