Skip to content

Commit 8b04943

Browse files
committed
Add Xetra tests
1 parent 9bfe9b8 commit 8b04943

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,14 @@ jobs:
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

0 commit comments

Comments
 (0)