summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrediano Ziglio <fziglio@redhat.com>2020-04-01 09:03:44 +0100
committerFrediano Ziglio <fziglio@redhat.com>2020-04-01 10:25:25 +0100
commitcf5a336d9b0730e7075b4b511914b45933cdc431 (patch)
tree37ab10adae4291c7e8a56cb05d662069cc103829
parent0d0df5681b179c5dc7767f6fa125a7ca57c92c39 (diff)
ci: Use a single job
Reduce CI resource usage using a single job instead of 2. The project is pretty small and the setup of the 2 jobs is pretty long compared to the build so using a single job (we used the same container image for both) reduce CI resource usage. Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Victor Toso <victortoso@redhat.com>
-rw-r--r--.gitlab-ci.yml12
1 files changed, 5 insertions, 7 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 881282b..e1afe6d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -11,14 +11,12 @@ before_script:
- dnf install -y $DEPS_COMMON
- autoreconf -if
-fedora-mingw32:
- script:
- - mingw32-configure
- - mingw32-make
- - mingw32-make check
-
-fedora-mingw64:
+fedora-mingw:
script:
- mingw64-configure
- mingw64-make
- mingw64-make check
+ - make distclean
+ - mingw32-configure
+ - mingw32-make
+ - mingw32-make check