summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2022-04-10 10:00:00 +0200
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2022-04-10 15:01:33 +0200
commitbc1f48ae03e3af58d6716a3e3d23037fea7deba4 (patch)
treee2e140099aaba72adf64b8779515a84de3572291 /.gitlab-ci.yml
parentv99.0 rc1 (diff)
downloadlibrewolf-debian-bc1f48ae03e3af58d6716a3e3d23037fea7deba4.tar.gz
librewolf-debian-bc1f48ae03e3af58d6716a3e3d23037fea7deba4.tar.bz2
librewolf-debian-bc1f48ae03e3af58d6716a3e3d23037fea7deba4.zip
drop custom runner usage: the full builds run on OBS anyway, so a shared runner should be enough
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a2e73ab..d17f152 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -31,7 +31,7 @@ variables:
prepare_debian_x86_64:
image: debian:sid
- tags: [x86_64b]
+ tags: [docker]
<<: *prepare_debian
<<: *prepare_config
only:
@@ -40,7 +40,7 @@ prepare_debian_x86_64:
prepare_ubuntu_x86_64:
image: ubuntu:20.04
- tags: [x86_64b]
+ tags: [docker]
<<: *prepare_ubuntu
<<: *prepare_config
only:
bgstack15