From bc96407004f5930242018b6388f4e3341c9c2ed6 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sat, 12 Sep 2020 13:11:51 -0400 Subject: ci: Let stages run in parallel --- .gitlab-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d41cac1e..dffa8056 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,6 +12,7 @@ variables: linux-fedora: image: registry.gitlab.gnome.org/gnome/pango/fedora:v2 stage: build + needs: [] variables: EXTRA_MESON_FLAGS: "--buildtype=debug --default-library=both" script: @@ -36,6 +37,7 @@ asan-build: image: registry.gitlab.gnome.org/gnome/pango/fedora:v2 tags: [ asan ] stage: analysis + needs: [] variables: script: - CC=clang meson --buildtype=debugoptimized -Db_sanitize=address -Db_lundef=false -Dintrospection=false _build @@ -56,6 +58,7 @@ asan-build: msys2-mingw64: stage: build + needs: [] tags: - win32-ps variables: @@ -77,6 +80,7 @@ msys2-mingw64: reference: image: registry.gitlab.gnome.org/gnome/pango/fedora:v1 stage: docs + needs: [] variables: EXTRA_MESON_FLAGS: "" script: @@ -90,6 +94,7 @@ reference: pages: stage: deploy + needs: ['reference'] script: - mv _reference/ public/ artifacts: -- cgit v1.2.1