From eccb8c4fb307e4d92d2689e3391181b21c34e775 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Fri, 1 Dec 2023 00:53:23 -0600 Subject: [PATCH] Make gitlab-ci build release and test with release, debug, and asan --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b3e1978b1..92699aeda 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,10 +18,12 @@ 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-debug install + - make purge configure-release install # run tests using the binary built before test: stage: test script: - - make test + - make configure-release test + - make configure-debug test + - make configure-asan test