From: Alex Bennée Date: Mon, 27 Oct 2025 11:03:13 +0000 (+0000) Subject: scripts/ci: modify gitlab runner deb setup X-Git-Tag: v10.2.0-rc1~36^2~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=900a5ecf0a1e5db4dc93190a3f69d49755670450;p=thirdparty%2Fqemu.git scripts/ci: modify gitlab runner deb setup Both Debian and Ubuntu are setup the same way. Reviewed-by: Manos Pitsidianakis Message-ID: <20251027110344.2289945-7-alex.bennee@linaro.org> Signed-off-by: Alex Bennée --- diff --git a/scripts/ci/setup/gitlab-runner.yml b/scripts/ci/setup/gitlab-runner.yml index 7025935487..76aeaf4ee9 100644 --- a/scripts/ci/setup/gitlab-runner.yml +++ b/scripts/ci/setup/gitlab-runner.yml @@ -56,12 +56,12 @@ url: "https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh" mode: 0755 when: - - ansible_facts['distribution'] == 'Ubuntu' + - ansible_facts['distribution'] in ['Ubuntu', 'Debian'] - name: Run gitlab-runner repo setup script (DEB) shell: "/root/script.deb.sh" when: - - ansible_facts['distribution'] == 'Ubuntu' + - ansible_facts['distribution'] in ['Ubuntu', 'Debian'] - name: Install gitlab-runner (DEB) ansible.builtin.apt: @@ -69,7 +69,7 @@ update_cache: yes state: present when: - - ansible_facts['distribution'] == 'Ubuntu' + - ansible_facts['distribution'] in ['Ubuntu', 'Debian'] # RPM setup - name: Get gitlab-runner repo setup script (RPM)