Skip to content

Commit

Permalink
Fix boost installation script
Browse files Browse the repository at this point in the history
Roll out the fix in #1257 to other places the same error exists.

Fixes [build failures](https://github.com/hazelcast/hazelcast-cpp-client/actions/runs/13434648446)
  • Loading branch information
JackPGreen authored Feb 20, 2025
1 parent 91d9d3b commit 0595d0e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ env:
boost_archive_name: 'boost_1_78_0.tar.gz'
boost_folder_name: 'boost_1_78_0'
boost_include_folder: 'C:\Boost\include\boost-1_78'
boost_url: 'https://boostorg.jfrog.io/artifactory/main/release/1.78.0/source/boost_1_78_0.tar.gz'
boost_url: 'https://archives.boost.io/release/1.78.0/source/boost_1_78_0.tar.gz'
thrift_version: 0.13.0
run_tests: false

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/nightly-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,31 +18,31 @@ jobs:
vc_boost:
- name: msvc-2019_boost_1730
image: 'windows-2019'
boost_url: 'https://boostorg.jfrog.io/artifactory/main/release/1.73.0/source/boost_1_73_0.tar.gz'
boost_url: 'https://archives.boost.io/release/1.73.0/source/boost_1_73_0.tar.gz'
boost_archive_name: 'boost_1_73_0.tar.gz'
boost_folder_name: 'boost_1_73_0'
boost_include_folder: 'C:\Boost\include\boost-1_73'
- name: msvc-2019_boost_1800
image: 'windows-2019'
boost_url: 'https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_1_80_0.tar.gz'
boost_url: 'https://archives.boost.io/release/1.80.0/source/boost_1_80_0.tar.gz'
boost_archive_name: 'boost_1_80_0.tar.gz'
boost_folder_name: 'boost_1_80_0'
boost_include_folder: 'C:\Boost\include\boost-1_80'
- name: msvc-2022_boost_1780
image: 'windows-2022'
boost_url: 'https://boostorg.jfrog.io/artifactory/main/release/1.78.0/source/boost_1_78_0.tar.gz'
boost_url: 'https://archives.boost.io/release/1.78.0/source/boost_1_78_0.tar.gz'
boost_archive_name: 'boost_1_78_0.tar.gz'
boost_folder_name: 'boost_1_78_0'
boost_include_folder: 'C:\Boost\include\boost-1_78'
- name: msvc-2022_boost_1800
image: 'windows-2022'
boost_url: 'https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_1_80_0.tar.gz'
boost_url: 'https://archives.boost.io/release/1.80.0/source/boost_1_80_0.tar.gz'
boost_archive_name: 'boost_1_80_0.tar.gz'
boost_folder_name: 'boost_1_80_0'
boost_include_folder: 'C:\Boost\include\boost-1_80'
- name: msvc-latest_boost_1800
image: 'windows-latest'
boost_url: 'https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_1_80_0.tar.gz'
boost_url: 'https://archives.boost.io/release/1.80.0/source/boost_1_80_0.tar.gz'
boost_archive_name: 'boost_1_80_0.tar.gz'
boost_folder_name: 'boost_1_80_0'
boost_include_folder: 'C:\Boost\include\boost-1_80'
Expand Down
2 changes: 1 addition & 1 deletion docker/hazelcast-fedora22-x86_64.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ RUN dnf groups install -y "Development Tools"
RUN dnf install -y gcc-c++ openssl-devel cmake tar wget bzip2 java-1.8.0-openjdk

# install boost
RUN wget --quiet https://boostorg.jfrog.io/artifactory/main/release/1.72.0/source/boost_1_72_0.tar.bz2 && tar xjf boost_1_72_0.tar.bz2 && rm boost_1_72_0.tar.bz2 && cd boost_1_72_0 && ./bootstrap.sh && ./b2 address-model=64 --with-thread --with-chrono install && cd .. && rm -rf boost_1_72_0
RUN wget --quiet https://archives.boost.io/release/1.72.0/source/boost_1_72_0.tar.bz2 && tar xjf boost_1_72_0.tar.bz2 && rm boost_1_72_0.tar.bz2 && cd boost_1_72_0 && ./bootstrap.sh && ./b2 address-model=64 --with-thread --with-chrono install && cd .. && rm -rf boost_1_72_0

RUN wget --quiet https://github.com/Kitware/CMake/releases/download/v3.19.0/cmake-3.19.0-Linux-x86_64.sh && \
chmod +x ./cmake-3.19.0-Linux-x86_64.sh && \
Expand Down

0 comments on commit 0595d0e

Please sign in to comment.