try ubuntu icc pipeline

This commit is contained in:
ado
2021-02-24 18:06:09 +01:00
parent dc3f0925fa
commit 4aefdca6a4
4 changed files with 68 additions and 32 deletions

View File

@@ -17,6 +17,10 @@ on:
jobs:
windows-mingw:
if: >-
! contains(toJSON(github.event.commits.*.message), '[skip ci]') &&
! contains(toJSON(github.event.commits.*.message), '[skip github]')
name: ${{ matrix.msystem }}
runs-on: windows-latest
defaults:
@@ -61,7 +65,9 @@ jobs:
run: script/ci_install_deps.sh
- name: Configure
run: cmake -DCMAKE_CXX_COMPILER=clang++ -S test -B build -DCMAKE_BUILD_TYPE=Debug
run: >-
cmake -DCMAKE_CXX_COMPILER=clang++ -S test -B build
-DCMAKE_BUILD_TYPE=Debug
- name: Build
run: cmake --build build -j ${{ steps.cores.outputs.count }}