8000 fix(ci): update CRIU download URL (#13289) · podman-desktop/podman-desktop@a5e547b · GitHub
[go: up one dir, main page]

Skip to content

Commit a5e547b

Browse files
authored
fix(ci): update CRIU download URL (#13289)
The `cz.archive.ubuntu.com` mirror for CRIU is currently unavailable, causing CI failures. This commit updates the download URL to use `archive.ubuntu.com` directly, which is a more reliable and generally available mirror. This change ensures that the Podman update process in CI environments can reliably download and install the `criu` package, preventing build failures related to unreachable repositories. Signed-off-by: Simon Rey <sfbrey+eqqe@gmail.com>
1 parent 205cef0 commit a5e547b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/e2e-kubernetes-main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
echo "install necessary dependencies for criu package which is not part of ${ubuntu_version}"
8686
sudo apt-get install -qq libprotobuf32t64 python3-protobuf libnet1
8787
echo "install criu manually from static location"
88-
curl -sLO http://cz.archive.ubuntu.com/ubuntu/pool/universe/c/criu/criu_3.16.1-2_amd64.deb && sudo dpkg -i criu_3.16.1-2_amd64.deb
88+
curl -sLO http://archive.ubuntu.com/ubuntu/pool/universe/c/criu/criu_3.16.1-2_amd64.deb && sudo dpkg -i criu_3.16.1-2_amd64.deb
8989
echo "installing/update podman package..."
9090
sudo apt-get -qq -y install podman || { echo "Start fallback steps for podman nightly installation from a static mirror" && \
9191
sudo sh -c "echo 'deb http://ftp.lysator.liu.se/pub/opensuse/repositories/devel:/kubic:/libcontainers:/unstable/xUbuntu_${ubuntu_version}/ /' > /etc/apt/sources.list.d/devel:kubic:libcontainers:unstable.list" && \

.github/workflows/e2e-main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
echo "install necessary dependencies for criu package which is not part of ${ubuntu_version}"
100100
sudo apt-get install -qq libprotobuf32t64 python3-protobuf libnet1
101101
echo "install criu manually from static location"
102-
curl -sLO http://cz.archive.ubuntu.com/ubuntu/pool/universe/c/criu/criu_3.16.1-2_amd64.deb && sudo dpkg -i criu_3.16.1-2_amd64.deb
102+
curl -sLO http://archive.ubuntu.com/ubuntu/pool/universe/c/criu/criu_3.16.1-2_amd64.deb && sudo dpkg -i criu_3.16.1-2_amd64.deb
103103
echo "installing/update podman package..."
104104
sudo apt-get -qq -y install podman || { echo "Start fallback steps for podman nightly installation from a static mirror" && \
105105
sudo sh -c "echo 'deb http://ftp.lysator.liu.se/pub/opensuse/repositories/devel:/kubic:/libcontainers:/unstable/xUbuntu_${ubuntu_version}/ /' > /etc/apt/sources.list.d/devel:kubic:libcontainers:unstable.list" && \

.github/workflows/pr-check.yaml

Lines changed: 1 addition & 1 deletion
55DB
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ jobs:
331331
echo "install necessary dependencies for criu package which is not part of ${ubuntu_version}"
332332
sudo apt-get install --allow-unauthenticated -qq libprotobuf32t64 python3-protobuf libnet1
333333
echo "install criu manually from static location"
334-
curl -sLO http://cz.archive.ubuntu.com/ubuntu/pool/universe/c/criu/criu_3.16.1-2_amd64.deb && sudo dpkg -i criu_3.16.1-2_amd64.deb
334+
curl -sLO http://archive.ubuntu.com/ubuntu/pool/universe/c/criu/criu_3.16.1-2_amd64.deb && sudo dpkg -i criu_3.16.1-2_amd64.deb
335335
echo "installing/update podman package..."
336336
sudo apt-get -qq -y install --allow-unauthenticated podman || { echo "Start fallback steps for podman nightly installation from a static mirror" && \
337337
sudo sh -c "echo 'deb http://ftp.lysator.liu.se/pub/opensuse/repositories/devel:/kubic:/libcontainers:/unstable/xUbuntu_${ubuntu_version}/ /' > /etc/apt/sources.list.d/devel:kubic:libcontainers:unstable.list" && \

0 commit comments

Comments
 (0)
0