Skip to content

Commit 54c7fbf

Browse files
committed
Add basicTypes exercise to CI.
1 parent 5658dae commit 54c7fbf

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/workflows/build-exercises.yml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
EXERCISE:
2323
- NAME: "asan"
2424
- NAME: "atomic"
25+
- NAME: "basicTypes"
2526
- NAME: "callgrind"
2627
- NAME: "concepts"
2728
- NAME: "condition_variable"

exercises/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ endif()
1616
add_subdirectory( hello )
1717
add_subdirectory( asan )
1818
add_subdirectory( atomic )
19+
add_subdirectory( basicTypes )
1920
add_subdirectory( callgrind )
2021
add_subdirectory( condition_variable )
2122
add_subdirectory( constness )

exercises/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
TESTDIRS = callgrind cppcheck header_units control hello modules move python smartPointers templates virtual_inheritance \
2-
debug helgrind memcheck polymorphism race stl valgrind
2+
debug helgrind memcheck polymorphism race stl valgrind basicTypes
33
NOCOMPILETESTDIRS = constness
44

55
solution:

0 commit comments

Comments
 (0)