ci: add more test

Signed-off-by: Yuhang Zhao <2546789017@qq.com>
This commit is contained in:
Yuhang Zhao 2022-10-17 16:02:05 +08:00
parent 1ae0bd8fd6
commit 6d524d2db7
1 changed files with 8 additions and 3 deletions

View File

@ -18,6 +18,7 @@ jobs:
strategy: strategy:
matrix: matrix:
qt-version: [5.15.2, 6.4.0] qt-version: [5.15.2, 6.4.0]
build-type: [Debug, Release]
library-type: [shared, static] library-type: [shared, static]
platform: [windows-latest, ubuntu-latest, macos-latest] platform: [windows-latest, ubuntu-latest, macos-latest]
include: include:
@ -33,10 +34,14 @@ jobs:
CC: clang CC: clang
CXX: clang++ CXX: clang++
make: make make: make
- build-type: Debug
build_type_flag: -DCMAKE_BUILD_TYPE=Debug
- build-type: Release
build_type_flag: -DCMAKE_BUILD_TYPE=Release
- library-type: shared - library-type: shared
additional_cmake_flags: -DFRAMELESSHELPER_BUILD_STATIC=OFF lib_type_flag: -DFRAMELESSHELPER_BUILD_STATIC=OFF
- library-type: static - library-type: static
additional_cmake_flags: -DFRAMELESSHELPER_BUILD_STATIC=ON lib_type_flag: -DFRAMELESSHELPER_BUILD_STATIC=ON
runs-on: ${{ matrix.platform }} runs-on: ${{ matrix.platform }}
@ -63,5 +68,5 @@ jobs:
run: | run: |
mkdir ci-test-build mkdir ci-test-build
cd ci-test-build cd ci-test-build
cmake -DCMAKE_C_COMPILER=${{ matrix.CC }} -DCMAKE_CXX_COMPILER=${{ matrix.CXX }} -DCMAKE_BUILD_TYPE=Release -DFRAMELESSHELPER_EXAMPLES_DEPLOYQT=OFF ${{ matrix.additional_cmake_flags }} .. cmake -DCMAKE_C_COMPILER=${{ matrix.CC }} -DCMAKE_CXX_COMPILER=${{ matrix.CXX }} -DFRAMELESSHELPER_EXAMPLES_DEPLOYQT=OFF ${{ matrix.build_type_flag }} ${{ matrix.lib_type_flag }} ..
cmake --build . cmake --build .