File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616 run : curl -L https://archives.boost.io/release/1.72.0/source/boost_1_72_0.tar.gz | tar zx
1717 shell : bash
1818 - name : configure
19- run : cmake -Bbuild -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DXETRA_FAST_SPECIFICATION=ON
19+ run : cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON
20+ - name : configure xetra
21+ run : cmake -B ${{github.workspace}}/build-xetra -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DXETRA_FAST_SPECIFICATION=ON
2022 - name : build
21- run : cmake --build build --parallel 2
23+ run : cmake --build ${{github.workspace}}/build --parallel 2
24+ - name : build xetra
25+ run : cmake --build ${{github.workspace}}/build-xetra --parallel 2
2226 - name : test
23- run : cd build && ctest -VV
27+ run : cd ${{github.workspace}}/build && ctest -VV
28+ - name : test xetra
29+ run : cd ${{github.workspace}}/build-xetra && ctest -VV
You can’t perform that action at this time.
0 commit comments