From cbf989fa7e6d27d2304a71686c7c1e7e9efd15d3 Mon Sep 17 00:00:00 2001 From: Stephan Hageboeck Date: Tue, 2 Apr 2024 17:10:07 +0200 Subject: [PATCH] Add basicTypes exercise to CI. --- .github/workflows/build-exercises.yml | 1 + exercises/CMakeLists.txt | 1 + exercises/Makefile | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-exercises.yml b/.github/workflows/build-exercises.yml index 42ef554c..8ca581e0 100644 --- a/.github/workflows/build-exercises.yml +++ b/.github/workflows/build-exercises.yml @@ -22,6 +22,7 @@ jobs: EXERCISE: - NAME: "asan" - NAME: "atomic" + - NAME: "basicTypes" - NAME: "callgrind" - NAME: "concepts" - NAME: "condition_variable" diff --git a/exercises/CMakeLists.txt b/exercises/CMakeLists.txt index bfb2cb5b..36420d05 100644 --- a/exercises/CMakeLists.txt +++ b/exercises/CMakeLists.txt @@ -16,6 +16,7 @@ endif() add_subdirectory( hello ) add_subdirectory( asan ) add_subdirectory( atomic ) +add_subdirectory( basicTypes ) add_subdirectory( callgrind ) add_subdirectory( condition_variable ) add_subdirectory( constness ) diff --git a/exercises/Makefile b/exercises/Makefile index 229fc7b2..647e410b 100644 --- a/exercises/Makefile +++ b/exercises/Makefile @@ -1,5 +1,5 @@ TESTDIRS = callgrind cppcheck header_units control hello modules move python smartPointers templates virtual_inheritance \ - debug helgrind memcheck polymorphism race stl valgrind + debug helgrind memcheck polymorphism race stl valgrind basicTypes NOCOMPILETESTDIRS = constness solution: