File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1515 runs-on : ${{ matrix.os }}
1616 strategy :
1717 matrix :
18- os : [ubuntu-20 .04]
18+ os : [ubuntu-24 .04]
1919
2020 steps :
2121 - uses : actions/checkout@v2
4949 - name : Build
5050 shell : bash
5151 working-directory : ${{github.workspace}}/build
52- run : cmake --build . --config ${{env.BUILD_TYPE}}
52+ run : cmake --build . --config ${{env.BUILD_TYPE}} -DBUILD_TESTING=ON
5353
5454 - name : run test (Linux)
5555 working-directory : ${{github.workspace}}/build
Original file line number Diff line number Diff line change 4444 - name : Build
4545 working-directory : ${{github.workspace}}/build
4646 shell : bash
47- run : cmake --build . --config ${{env.BUILD_TYPE}}
47+ run : cmake --build . --config ${{env.BUILD_TYPE}} -DBUILD_TESTING=ON
4848
4949 - name : run test (Windows)
5050 working-directory : ${{github.workspace}}/build
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ test = "PATH=\"$PATH;build/Release\" build/tests/Release/behaviortree_cpp_test.e
1313test = " ./build/tests/behaviortree_cpp_test"
1414
1515[tasks ]
16- build = " mkdir -p build && cd build && cmake ../ -DCMAKE_BUILD_TYPE=Release && cmake --build . --parallel --config Release"
16+ build = " mkdir -p build && cd build && cmake ../ -DCMAKE_BUILD_TYPE=Release && cmake --build . --parallel --config Release --DBUILD_TESTING=ON "
1717
1818[dependencies ]
1919cmake = " >=3.16.3"
You can’t perform that action at this time.
0 commit comments