[Core] Disable nested FetchContent on standalone builds #696
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Langulus::Math CI | |
on: [push, pull_request, repository_dispatch] # Trigger on pushes to all branches and for all pull-requests | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
fail-fast: false # do not abort on a failed job | |
matrix: | |
os: [ubuntu-22.04, windows-latest] | |
build: [Release] | |
arch: [x86, x64] | |
feature: [ | |
[SSE, 16, '-msse', '/arch:SSE'], | |
[SSE2, 16, '-msse2', '/arch:SSE2'], | |
[SSE3, 16, '-msse3', '/arch:SSE3'], | |
[SSSE3, 16, '-mssse3', '/arch:SSSE3'], | |
[SSE4.1, 16, '-msse4.1', '/arch:SSE4.1'], | |
[SSE4.2, 16, '-msse4.2', '/arch:SSE4.2'], | |
[AVX, 32, '-mavx', '/arch:AVX'], | |
[AVX2, 32, '-mavx2', '/arch:AVX2'], | |
[AVX512, 64, '-mavx512f', '/arch:AVX512'] | |
] | |
compiler: [g++, clang++, cl] | |
exclude: | |
- os: ubuntu-22.04 | |
compiler: cl | |
- os: ubuntu-22.04 | |
arch: x86 | |
- os: windows-latest | |
compiler: g++ | |
- os: windows-latest | |
compiler: clang++ | |
- arch: x64 | |
compiler: cl | |
feature: [SSE, 16, '-msse', '/arch:SSE'] | |
- arch: x64 | |
compiler: cl | |
feature: [SSE2, 16, '-msse2', '/arch:SSE2'] | |
- arch: x64 | |
compiler: cl | |
feature: [SSE3, 16, '-msse3', '/arch:SSE3'] | |
- arch: x64 | |
compiler: cl | |
feature: [SSSE3, 16, '-mssse3', '/arch:SSSE3'] | |
- arch: x64 | |
compiler: cl | |
feature: [SSE4.1, 16, '-msse4.1', '/arch:SSE4.1'] | |
- arch: x64 | |
compiler: cl | |
feature: [SSE4.2, 16, '-msse4.2', '/arch:SSE4.2'] | |
- arch: x86 | |
compiler: cl | |
feature: [SSE3, 16, '-msse3', '/arch:SSE3'] | |
- arch: x86 | |
compiler: cl | |
feature: [SSSE3, 16, '-mssse3', '/arch:SSSE3'] | |
- arch: x86 | |
compiler: cl | |
feature: [SSE4.1, 16, '-msse4.1', '/arch:SSE4.1'] | |
- arch: x86 | |
compiler: cl | |
feature: [SSE4.2, 16, '-msse4.2', '/arch:SSE4.2'] | |
# Seems the cloud at github doesn't have the avx512 extensions | |
- feature: [AVX512, 64, '-mavx512f', '/arch:AVX512'] | |
include: | |
- os: ubuntu-22.04 | |
cmake_args: "" | |
- os: windows-latest | |
arch: x86 | |
cmake_args: "-G \"Visual Studio 17 2022\" -A Win32" | |
- os: windows-latest | |
arch: x64 | |
cmake_args: "-G \"Visual Studio 17 2022\" -A x64" | |
name: "${{matrix.os}}-${{matrix.compiler}}-${{matrix.build}}-${{matrix.arch}}-${{matrix.feature[0]}}" | |
runs-on: ${{matrix.os}} | |
steps: | |
- name: Dispatch Trigger | |
if: ${{ startsWith(github.event.action, 'Dependency') }} | |
run: > | |
echo "Triggered by dependency: ${{github.event.client_payload.cause}}" | |
- name: Clone | |
uses: actions/checkout@v3 | |
- if: matrix.os == 'ubuntu-22.04' | |
name: Configure Linux | |
run: > | |
cmake | |
-DCMAKE_CXX_COMPILER=${{matrix.compiler}} | |
-S . | |
-B out | |
-DCMAKE_BUILD_TYPE=${{matrix.build}} | |
-DCMAKE_CXX_FLAGS="${{matrix.feature[2]}}" | |
-DLANGULUS_ALIGNMENT=${{matrix.feature[1]}} | |
${{matrix.cmake_args}} | |
- if: matrix.os == 'windows-latest' | |
name: Configure Windows | |
run: > | |
cmake | |
-DCMAKE_CXX_COMPILER=${{matrix.compiler}} | |
-S . | |
-B out | |
-DCMAKE_BUILD_TYPE=${{matrix.build}} | |
-DCMAKE_CXX_FLAGS="/DWIN32 /D_WINDOWS /EHsc ${{matrix.feature[3]}}" | |
-DLANGULUS_ALIGNMENT=${{matrix.feature[1]}} | |
${{matrix.cmake_args}} | |
- name: Build | |
run: cmake --build out --config ${{matrix.build}} | |
- name: Test | |
run: cd out && ctest -V -C ${{matrix.build}} |