We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae36ef9 commit 6fe1585Copy full SHA for 6fe1585
.github/workflows/build.yml
@@ -84,6 +84,14 @@ jobs:
84
- name: Install
85
working-directory: ./build
86
run: ${{ matrix.config.sudocmd }} cmake --install .
87
+ - name: Integration Test
88
+ working-directory: ./test/integration
89
+ run: |
90
+ mkdir build
91
+ cd build
92
+ cmake .. ${{ matrix.config.cmake_extra_args }} -DCMAKE_BUILD_TYPE=${{ matrix.config.config }}
93
+ cmake --build . -j ${{ matrix.config.cores }} --config ${{ matrix.config.config }}
94
+ continue-on-error: true
95
- name: Create packages
96
97
run: ${{ matrix.config.sudocmd }} cpack
0 commit comments