From 87ab3ca9da3b802c20fd9c7c3222c0562b2beacd Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Wed, 20 May 2026 11:43:40 +0200 Subject: [PATCH] gitlab-ci: add wget to ubuntu_jammy_pip so test_mirroring_a_repo runs Otherwise, it only runs on the fedora_latest job. Debian-derives are by far the most common platform, so this test should run on at least one. This test caught bugs in !1788 so its valuable. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6d898618..ce98bd88 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -229,7 +229,7 @@ ubuntu_jammy_pip: image: ubuntu:jammy <<: *apt-template script: - - apt-get install git default-jdk-headless python3-pip python3-venv rsync + - apt-get install git default-jdk-headless python3-pip python3-venv rsync wget # setup venv to act as release build machine - python3 -m venv sdist-env