Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Commit 5cd2d4d

Browse files
authored
[v1.9.x] CI fixes (#20648)
* Update openssl package in ubuntu_core.sh (used in ubuntu 16.04 images) to avoid bug triggered by let's encrypt expired ca cert. * Reduce number of parallel docker builds we run at once to 2, since there are multiple jobs (on different branches) running at the same time. * Use different mirror to download binutils to avoid expired let's encrypt CA cert.
1 parent 7d09efc commit 5cd2d4d

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

ci/docker/install/ubuntu_binutils.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ apt-get install -y \
2828
wget
2929

3030
mkdir /opt/binutils_install && mkdir /opt/binutils && cd /opt/binutils
31-
wget -nv https://ftp.gnu.org/gnu/binutils/binutils-2.27.tar.gz
31+
wget -nv http://mirrors.kernel.org/gnu/binutils/binutils-2.27.tar.gz
3232
tar -xvf binutils-2.27.tar.gz && cd binutils-2.27
3333
./configure --prefix=/opt/binutils_other --exec-prefix=/opt/binutils_install
3434
make -j$(nproc)

ci/docker/install/ubuntu_core.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ apt-get install -y \
5151
libedit-dev \
5252
libxml2-dev \
5353
ninja-build \
54+
openssl \
5455
software-properties-common \
5556
sudo \
5657
unzip \

ci/docker_cache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
DOCKER_CACHE_NUM_RETRIES = 3
4040
DOCKER_CACHE_TIMEOUT_MINS = 45
41-
PARALLEL_BUILDS = 5
41+
PARALLEL_BUILDS = 2
4242
DOCKER_CACHE_RETRY_SECONDS = 5
4343
DOCKER_BUILD_NUM_RETRIES = 2
4444

0 commit comments

Comments
 (0)