File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1818 steps :
1919 - uses : actions/checkout@v3
2020 - name : cmake
21- run : cmake -S . -B build -DCMAKE_BUILD_TYPE=${{matrix.build}} -DSEMVER_BUILD_TESTS=ON
21+ run : cmake -S . -B build -DCMAKE_BUILD_TYPE=${{matrix.build}}
2222 - name : build
2323 run : cmake --build build --config ${{matrix.build}} --parallel 4
2424 - name : test
4040 steps :
4141 - uses : actions/checkout@v3
4242 - name : cmake
43- run : cmake -S . -B build -A ${{matrix.arch}} -DCMAKE_BUILD_TYPE=${{matrix.build}} -DSEMVER_BUILD_TESTS=ON
43+ run : cmake -S . -B build -A ${{matrix.arch}} -DCMAKE_BUILD_TYPE=${{matrix.build}}
4444 - name : build
4545 run : cmake --build build --config ${{matrix.build}} --parallel 4
4646 - name : test
5656 steps :
5757 - uses : actions/checkout@v3
5858 - name : cmake
59- run : cmake -S . -B build -DSEMVER_BUILD_TESTS=ON
59+ run : cmake -S . -B build
6060 - name : build
6161 run : cmake --build build --parallel 4
6262 - name : test
Original file line number Diff line number Diff line change 2222 steps :
2323 - uses : actions/checkout@v3
2424 - name : cmake
25- run : cmake -S . -B build -DSEMVER_BUILD_TESTS=ON
25+ run : cmake -S . -B build
2626 - name : build
2727 run : cmake --build build --parallel 4
2828 - name : test
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ project(semver LANGUAGES CXX VERSION 0.1.0)
33
44set (CMAKE_CXX_STANDARD 17)
55
6- option (SEMVER_BUILD_TESTS "Enable test execution" OFF )
6+ option (SEMVER_BUILD_TESTS "Enable builds of tests" ON )
77
88include (GNUInstallDirs)
99
You can’t perform that action at this time.
0 commit comments