Skip to content

Commit 8f96092

Browse files
committed
Update GitHub actions to use newer versions of Asio
Update the GitHub actions to support Boost Asio and standalone Asio to newer version and remove building with later versions. It's probably more important to ensure we can build with the later versions.
1 parent 5b0cd2f commit 8f96092

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/analyze.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: MarkusJx/install-boost@v2
2222
id: install-boost
2323
with:
24-
boost_version: 1.83.0
24+
boost_version: 1.88.0
2525
toolset: msvc
2626
platform_version: 2022
2727

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: MarkusJx/install-boost@v2
2222
id: install-boost
2323
with:
24-
boost_version: 1.83.0
24+
boost_version: 1.88.0
2525
toolset: msvc
2626
platform_version: 2022
2727

.github/workflows/coverity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
uses: MarkusJx/install-boost@v2
3737
id: install-boost
3838
with:
39-
boost_version: 1.83.0
39+
boost_version: 1.88.0
4040
toolset: msvc
4141
platform_version: 2022
4242

.github/workflows/unittest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
boost_version: ["1.83.0", "1.84.0", "1.85.0", "1.86.0"]
20+
boost_version: ["1.85.0", "1.86.0", "1.87.0", "1.88.0"]
2121
os: [windows-2022]
2222
toolset: [v142, v143, ClangCL]
2323
build_type: [Debug, Release]
@@ -152,7 +152,7 @@ jobs:
152152
strategy:
153153
fail-fast: false
154154
matrix:
155-
asio_version: ["asio-1-31-0", "asio-1-32-0"]
155+
asio_version: ["asio-1-33-0", "asio-1-34-2"]
156156
os: [windows-2022]
157157
build_type: [Debug, Release]
158158
standard: [14, 17, 20]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Code using this library must target at least
4444

4545
Either [Asio](https://think-async.com/Asio/) or the [Boost
4646
libraries](https://www.boost.org) are required. Currently tested with
47-
Boost 1.83 to 1.86 and Asio 1.31 to 1.32 but at least most newer
47+
Boost 1.85 to 1.88 and Asio 1.33 to 1.34-2 but at least most newer
4848
versions ought to work.
4949

5050
A working C++ compiler supporting at least the C++14 standard is

0 commit comments

Comments
 (0)