From d82bfb6a326dd8312442993b3ec5e80f51e4102a Mon Sep 17 00:00:00 2001 From: Christian Grasser Date: Thu, 14 Dec 2023 17:50:28 +0100 Subject: [PATCH] update for boost 1.84.0 --- .github/workflows/CI_build.yml | 6 +++--- appveyor.yml | 12 ++++++++---- builder/builder/Config.cs | 8 ++++---- 3 files changed, 15 insertions(+), 11 deletions(-) diff --git a/.github/workflows/CI_build.yml b/.github/workflows/CI_build.yml index 618943f..8bd9e38 100644 --- a/.github/workflows/CI_build.yml +++ b/.github/workflows/CI_build.yml @@ -10,9 +10,9 @@ jobs: matrix: build_configuration: [Release] build_platform: [Any CPU] - build_boost_version: [1_83_0] - build_boost_version_dot: [1.83.0] - build_msvc_version_dot: [14.2, 14.1] + build_boost_version: [1_84_0] + build_boost_version_dot: [1.84.0] + build_msvc_version_dot: [14.3, 14.2, 14.1] steps: - name: Checkout repo uses: actions/checkout@v3 diff --git a/appveyor.yml b/appveyor.yml index 5c82fe2..f584f0b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 1.81.{build} +version: 1.84.{build} environment: @@ -6,9 +6,9 @@ environment: - PlatformToolset: v143 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022 - BUILD_BOOST_VERSION: 1_83_0 - BUILD_BOOST_VERSION_DOT: 1.83.0 - BUILD_MSVC_VERSION_DOT: 14.2 + BUILD_BOOST_VERSION: 1_84_0 + BUILD_BOOST_VERSION_DOT: 1.84.0 + BUILD_MSVC_VERSION_DOT: 14.3 configuration: - Release @@ -56,6 +56,10 @@ install: - rmdir /q /s C:\Python39-x64 - rmdir /q /s C:\Python310 - rmdir /q /s C:\Python310-x64 + - rmdir /q /s C:\Python311 + - rmdir /q /s C:\Python311-x64 + - rmdir /q /s C:\Python312 + - rmdir /q /s C:\Python312-x64 # complete zip, but fails due to storage limitations on appveyor (artifactory download is much faster than sourceforge) - appveyor DownloadFile https://boostorg.jfrog.io/artifactory/main/release/%BUILD_BOOST_VERSION_DOT%/binaries/boost_%BUILD_BOOST_VERSION%-bin-msvc-all-32-64.7z diff --git a/builder/builder/Config.cs b/builder/builder/Config.cs index 3a10187..833881e 100644 --- a/builder/builder/Config.cs +++ b/builder/builder/Config.cs @@ -6,7 +6,7 @@ namespace builder public static class Config { public static readonly Version Version = - new StableVersion(1, 83, 0); + new StableVersion(1, 84, 0); public static readonly List[] Release = { @@ -40,9 +40,9 @@ public CompilerInfo(string name, string preRelease = "") { "vc110", new CompilerInfo("Visual Studio 2012 Update 4") }, { "vc120", new CompilerInfo("Visual Studio 2013 Update 5") }, { "vc140", new CompilerInfo("Visual Studio 2015 Update 3") }, - { "vc141", new CompilerInfo("Visual Studio 2017 15.9.52") }, - { "vc142", new CompilerInfo("Visual Studio 2019 16.11.24") }, - { "vc143", new CompilerInfo("Visual Studio 2022 17.5.1") }, + { "vc141", new CompilerInfo("Visual Studio 2017 15.9.58") }, + { "vc142", new CompilerInfo("Visual Studio 2019 16.11.31") }, + { "vc143", new CompilerInfo("Visual Studio 2022 17.7.6") }, }; public static int CompilerNumber(string key)