Skip to content

Commit 08fd880

Browse files
authored
Remove (explicit) reference to chrono library from tests (#1335)
See #1333 (comment)
1 parent 338977a commit 08fd880

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/actions/build-test/windows/action.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,7 @@ runs:
9393
.\bootstrap.bat
9494
# Build the libs for:
9595
# - Thread - https://www.boost.org/libs/thread/
96-
# - Chrono - https://www.boost.org/libs/chrono/
97-
.\b2 address-model=${{ inputs.ARCH_ADDRESS_MODEL }} --with-thread --with-chrono install
96+
.\b2 address-model=${{ inputs.ARCH_ADDRESS_MODEL }} --with-thread install
9897
cd ..
9998
Remove-Item ${{ inputs.BOOST_FOLDER_NAME }} -Recurse -Force
10099

scripts/install-boost.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ pushd "${TARBALL_NAME}"
1717
./bootstrap.sh
1818
# Build the libs for:
1919
# - Thread - https://www.boost.org/libs/thread/
20-
# - Atomic - https://www.boost.org/libs/atomic/
2120
# Used the c++11 language level intentionally to support old boost versions.
22-
./b2 cxxflags="-std=c++11 -Wno-enum-constexpr-conversion" --with-thread --with-chrono install
21+
./b2 cxxflags="-std=c++11 -Wno-enum-constexpr-conversion" --with-thread install
2322
popd

0 commit comments

Comments
 (0)