Skip to content

Commit

Permalink
update for boost 1.84.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chcg committed Dec 14, 2023
1 parent d49e551 commit d82bfb6
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 8 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
version: 1.81.{build}
version: 1.84.{build}


environment:
matrix:

- 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
Expand Down Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions builder/builder/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
{
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit d82bfb6

Please sign in to comment.