Skip to content

Commit d82bfb6

Browse files
committed
update for boost 1.84.0
1 parent d49e551 commit d82bfb6

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

.github/workflows/CI_build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
matrix:
1111
build_configuration: [Release]
1212
build_platform: [Any CPU]
13-
build_boost_version: [1_83_0]
14-
build_boost_version_dot: [1.83.0]
15-
build_msvc_version_dot: [14.2, 14.1]
13+
build_boost_version: [1_84_0]
14+
build_boost_version_dot: [1.84.0]
15+
build_msvc_version_dot: [14.3, 14.2, 14.1]
1616
steps:
1717
- name: Checkout repo
1818
uses: actions/checkout@v3

appveyor.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
version: 1.81.{build}
1+
version: 1.84.{build}
22

33

44
environment:
55
matrix:
66

77
- PlatformToolset: v143
88
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
9-
BUILD_BOOST_VERSION: 1_83_0
10-
BUILD_BOOST_VERSION_DOT: 1.83.0
11-
BUILD_MSVC_VERSION_DOT: 14.2
9+
BUILD_BOOST_VERSION: 1_84_0
10+
BUILD_BOOST_VERSION_DOT: 1.84.0
11+
BUILD_MSVC_VERSION_DOT: 14.3
1212

1313
configuration:
1414
- Release
@@ -56,6 +56,10 @@ install:
5656
- rmdir /q /s C:\Python39-x64
5757
- rmdir /q /s C:\Python310
5858
- rmdir /q /s C:\Python310-x64
59+
- rmdir /q /s C:\Python311
60+
- rmdir /q /s C:\Python311-x64
61+
- rmdir /q /s C:\Python312
62+
- rmdir /q /s C:\Python312-x64
5963

6064
# complete zip, but fails due to storage limitations on appveyor (artifactory download is much faster than sourceforge)
6165
- appveyor DownloadFile https://boostorg.jfrog.io/artifactory/main/release/%BUILD_BOOST_VERSION_DOT%/binaries/boost_%BUILD_BOOST_VERSION%-bin-msvc-all-32-64.7z

builder/builder/Config.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace builder
66
public static class Config
77
{
88
public static readonly Version Version =
9-
new StableVersion(1, 83, 0);
9+
new StableVersion(1, 84, 0);
1010

1111
public static readonly List[] Release =
1212
{
@@ -40,9 +40,9 @@ public CompilerInfo(string name, string preRelease = "")
4040
{ "vc110", new CompilerInfo("Visual Studio 2012 Update 4") },
4141
{ "vc120", new CompilerInfo("Visual Studio 2013 Update 5") },
4242
{ "vc140", new CompilerInfo("Visual Studio 2015 Update 3") },
43-
{ "vc141", new CompilerInfo("Visual Studio 2017 15.9.52") },
44-
{ "vc142", new CompilerInfo("Visual Studio 2019 16.11.24") },
45-
{ "vc143", new CompilerInfo("Visual Studio 2022 17.5.1") },
43+
{ "vc141", new CompilerInfo("Visual Studio 2017 15.9.58") },
44+
{ "vc142", new CompilerInfo("Visual Studio 2019 16.11.31") },
45+
{ "vc143", new CompilerInfo("Visual Studio 2022 17.7.6") },
4646
};
4747

4848
public static int CompilerNumber(string key)

0 commit comments

Comments
 (0)