summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Giles <giles@thaumas.net>2020-06-10 14:03:28 -0700
committerRalph Giles <giles@thaumas.net>2020-06-10 14:03:28 -0700
commit40b7f1c5c7a0a5bf012a90173f476e0191ad563b (patch)
tree40863acc5cc42c2905da4226de130cd69efe54a5
parent99bfb5cbf9396bd463523bec05d4add1e4bead82 (diff)
downloadlibvorbis-git-40b7f1c5c7a0a5bf012a90173f476e0191ad563b.tar.gz
gitlab-ci: Move shared tags to a default section.
Move shared properties into a `default` stanza per current style recommendations.
-rw-r--r--.gitlab-ci.yml11
1 files changed, 5 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3341d50c..411b47c3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,5 +1,8 @@
-# Image from https://hub.docker.com/_/gcc/ based on Debian
-image: gcc
+default:
+ tags:
+ - docker
+ # Image from https://hub.docker.com/_/gcc/ based on Debian
+ image: gcc
autoconf:
stage: build
@@ -15,8 +18,6 @@ autoconf:
paths:
- "lib/*.o"
- "lib/.libs/*.o"
- tags:
- - docker
cmake:
stage: build
@@ -28,5 +29,3 @@ cmake:
- mkdir build
- cmake -S . -B build -G "Ninja" -DCMAKE_BUILD_TYPE=Release
- cmake --build build
- tags:
- - docker