File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1111 steps :
1212 - uses : actions/checkout@v2
1313 - name : configure
14- run : mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release ..
14+ run : cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
1515 - name : build
1616 run : cmake --build build
1717 - name : test
2222 steps :
2323 - uses : actions/checkout@v2
2424 - name : configure
25- run : mkdir build && cd build && cmake ..
25+ run : cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
2626 - name : build
2727 run : cmake --build build
2828 - name : test
3333 steps :
3434 - uses : actions/checkout@v2
3535 - name : configure
36- run : mkdir build && cd build && cmake ..
36+ run : cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
3737 - name : build
38- run : cmake --build build --config Debug
38+ run : cmake --build build --config Release
3939 - name : test
40- run : ./build/test/Debug /unit_tests --wait-for-keypress never -d yes exclude:large_files
40+ run : ./build/test/Release /unit_tests --wait-for-keypress never -d yes exclude:large_files
You can’t perform that action at this time.
0 commit comments