Skip to content

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ env:
2828
boost_archive_name: 'boost_1_78_0.tar.gz'
2929
boost_folder_name: 'boost_1_78_0'
3030
boost_include_folder: 'C:\Boost\include\boost-1_78'
31-
boost_url: 'https://boostorg.jfrog.io/artifactory/main/release/1.78.0/source/boost_1_78_0.tar.gz'
31+
boost_url: 'https://archives.boost.io/release/1.78.0/source/boost_1_78_0.tar.gz'
3232
thrift_version: 0.13.0
3333
run_tests: false
3434

.github/workflows/nightly-windows.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,31 +18,31 @@ jobs:
1818
vc_boost:
1919
- name: msvc-2019_boost_1730
2020
image: 'windows-2019'
21-
boost_url: 'https://boostorg.jfrog.io/artifactory/main/release/1.73.0/source/boost_1_73_0.tar.gz'
21+
boost_url: 'https://archives.boost.io/release/1.73.0/source/boost_1_73_0.tar.gz'
2222
boost_archive_name: 'boost_1_73_0.tar.gz'
2323
boost_folder_name: 'boost_1_73_0'
2424
boost_include_folder: 'C:\Boost\include\boost-1_73'
2525
- name: msvc-2019_boost_1800
2626
image: 'windows-2019'
27-
boost_url: 'https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_1_80_0.tar.gz'
27+
boost_url: 'https://archives.boost.io/release/1.80.0/source/boost_1_80_0.tar.gz'
2828
boost_archive_name: 'boost_1_80_0.tar.gz'
2929
boost_folder_name: 'boost_1_80_0'
3030
boost_include_folder: 'C:\Boost\include\boost-1_80'
3131
- name: msvc-2022_boost_1780
3232
image: 'windows-2022'
33-
boost_url: 'https://boostorg.jfrog.io/artifactory/main/release/1.78.0/source/boost_1_78_0.tar.gz'
33+
boost_url: 'https://archives.boost.io/release/1.78.0/source/boost_1_78_0.tar.gz'
3434
boost_archive_name: 'boost_1_78_0.tar.gz'
3535
boost_folder_name: 'boost_1_78_0'
3636
boost_include_folder: 'C:\Boost\include\boost-1_78'
3737
- name: msvc-2022_boost_1800
3838
image: 'windows-2022'
39-
boost_url: 'https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_1_80_0.tar.gz'
39+
boost_url: 'https://archives.boost.io/release/1.80.0/source/boost_1_80_0.tar.gz'
4040
boost_archive_name: 'boost_1_80_0.tar.gz'
4141
boost_folder_name: 'boost_1_80_0'
4242
boost_include_folder: 'C:\Boost\include\boost-1_80'
4343
- name: msvc-latest_boost_1800
4444
image: 'windows-latest'
45-
boost_url: 'https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_1_80_0.tar.gz'
45+
boost_url: 'https://archives.boost.io/release/1.80.0/source/boost_1_80_0.tar.gz'
4646
boost_archive_name: 'boost_1_80_0.tar.gz'
4747
boost_folder_name: 'boost_1_80_0'
4848
boost_include_folder: 'C:\Boost\include\boost-1_80'

docker/hazelcast-fedora22-x86_64.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ RUN dnf groups install -y "Development Tools"
44
RUN dnf install -y gcc-c++ openssl-devel cmake tar wget bzip2 java-1.8.0-openjdk
55

66
# install boost
7-
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
7+
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
88

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

0 commit comments

Comments
 (0)