From 9bb77e743c79c0f534c19632ddc5baad7b3689d2 Mon Sep 17 00:00:00 2001 From: Bert van der Weerd Date: Sat, 4 Nov 2023 12:52:04 +0100 Subject: [PATCH] fixes --- .gitlab-ci.yml | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 01e1e68..b1464ef 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,6 +3,24 @@ stages: - build - release + +Test: + stage: test + when: manual + allow_failure: true + image: debian + script: + - apt-get update && apt-get -y upgrade + - apt-get -y install build-essential curl jq make python3 python3-dev python3-pip wget unzip + - make fetch + - sh -c "./scripts/check-patchfail.sh" + - make test + artifacts: + paths: + - librewolf-*.tar.bz2 + + + Build: stage: build when: manual @@ -24,21 +42,6 @@ Build: reports: dotenv: variables.env -Test: - stage: test - when: manual - allow_failure: true - image: debian - script: - - apt-get update && apt-get -y upgrade - - apt-get -y install build-essential curl jq make python3 python3-dev python3-pip wget - - make fetch - - sh -c "./scripts/check-patchfail.sh" - - make test - artifacts: - paths: - - librewolf-*.tar.bz2 - Release: stage: release when: manual