From b5db1056c4768fee82548f9154d44dd46d075ae8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20L=C3=BCbke?= Date: Wed, 24 Aug 2022 09:06:24 +0200 Subject: [PATCH] test: enable building of tests per default --- .gitlab-ci.yml | 2 +- CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 75f80f4..6dc4fac 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,7 +11,7 @@ build_release: stage: build artifacts: paths: - - build/test/test + - build/test/testTug expire_in: 100s script: - mkdir build && cd build diff --git a/CMakeLists.txt b/CMakeLists.txt index de6009f..26f716e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,7 @@ endif() option(TUG_ENABLE_TESTING "Run tests after succesfull compilation" - OFF) + ON) add_subdirectory(src)