File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -10,18 +10,25 @@ concurrency:
1010
1111jobs :
1212 linux :
13- name : ${{matrix.runner}}-${{matrix.compiler}}-${{matrix.version}}-llvm${{matrix.llvm}}
13+ name : ${{matrix.runner}}-${{matrix.compiler}}-${{matrix.version}}-${{ matrix.shared == 'ON' && 'shared' || 'static' }}- llvm${{matrix.llvm}}
1414 strategy :
1515 matrix :
1616 include :
1717 - runner : jammy
1818 compiler : gcc
1919 version : 12
2020 llvm : 14
21+ shared : ON
22+ - runner : jammy
23+ compiler : gcc
24+ version : 12
25+ llvm : 14
26+ shared : OFF
2127 - runner : jammy
2228 compiler : clang
2329 version : 15
2430 llvm : 15
31+ shared : ON
2532 runs-on : >-
2633 ${{ matrix.runner == 'focal' && 'ubuntu-20.04'
2734 || matrix.runner == 'jammy' && 'ubuntu-22.04'
6774 -DQIREE_BUILD_TESTS:BOOL=ON \
6875 -DQIREE_DEBUG:BOOL=ON \
6976 -DQIREE_USE_XACC:BOOL=OFF \
77+ -DQIREE_SHARED_LIBS:BOOL=${{ matrix.shared }} \
7078 -DCMAKE_BUILD_TYPE="Release" \
7179 -DCMAKE_INSTALL_PREFIX="${{github.workspace}}/install" \
7280 -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
You can’t perform that action at this time.
0 commit comments