From 644abd7f229bfd134b93991b3265dc8ea3df9e41 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Fri, 1 Dec 2023 01:03:53 -0600 Subject: [PATCH] Get rid of separate test stage in gitlab-ci --- .gitlab-ci.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 92699aed..f0a95612 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,12 +18,6 @@ build: before_script: - apt update && apt -y install make cmake ninja-build pkg-config xorg-dev libgtk-3-dev python3 python3-mypy script: - - make purge configure-release install - -# run tests using the binary built before -test: - stage: test - script: - - make configure-release test - - make configure-debug test - - make configure-asan test + - make purge configure-release test install + - make purge configure-debug test install + - make purge configure-asan test install