Skip to content

Searching for the segfault #694

Searching for the segfault

Searching for the segfault #694

Workflow file for this run

name: Langulus::Math CI
on: [push, repository_dispatch]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [windows-latest]
build: [Debug, Release]
arch: [x86]
cxx: [cl]
feature: [
[AVX, 32, '-mavx', '/arch:AVX'],
[AVX2, 32, '-mavx2', '/arch:AVX2'],
[AVX512, 64, '-mavx512f', '/arch:AVX512']
]
exclude:
- os: ubuntu-22.04
cxx: cl
- os: windows-latest
cxx: g++
- os: windows-latest
cxx: clang++
- arch: x64
cxx: cl
feature: [SSE, 16, '-msse', '/arch:SSE']
- arch: x64
cxx: cl
feature: [SSE2, 16, '-msse2', '/arch:SSE2']
- arch: x64
cxx: cl
feature: [SSE3, 16, '-msse3', '/arch:SSE3']
- arch: x64
cxx: cl
feature: [SSSE3, 16, '-mssse3', '/arch:SSSE3']
- arch: x64
cxx: cl
feature: [SSE4.1, 16, '-msse4.1', '/arch:SSE4.1']
- arch: x64
cxx: cl
feature: [SSE4.2, 16, '-msse4.2', '/arch:SSE4.2']
- arch: x86
cxx: cl
feature: [SSE3, 16, '-msse3', '/arch:SSE3']
- arch: x86
cxx: cl
feature: [SSSE3, 16, '-mssse3', '/arch:SSSE3']
- arch: x86
cxx: cl
feature: [SSE4.1, 16, '-msse4.1', '/arch:SSE4.1']
- arch: x86
cxx: 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
arch: x86
cmake_args: "-DCMAKE_CXX_FLAGS=-m32"
- os: ubuntu-22.04
arch: x64
cmake_args: "-DCMAKE_CXX_FLAGS=-m64"
- 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.cxx}}-${{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' && matrix.arch == 'x86'
name: Prepare Linux for cross-compilation
run: |
sudo apt update
sudo apt install g++-multilib
- if: matrix.os == 'ubuntu-22.04'
name: Configure (Linux)
run: >
cmake
-DCMAKE_CXX_COMPILER=${{matrix.cxx}}
-S .
-B out
${{matrix.cmake_args}}
-DCMAKE_BUILD_TYPE=${{matrix.build}}
-DCMAKE_CXX_FLAGS="${{matrix.feature[2]}}"
-DLANGULUS_ALIGNMENT=${{matrix.feature[1]}}
- if: matrix.os == 'windows-latest'
name: Configure (Windows)
run: >
cmake
-DCMAKE_CXX_COMPILER=${{matrix.cxx}}
-S .
-B out
${{matrix.cmake_args}}
-DCMAKE_BUILD_TYPE=${{matrix.build}}
-DCMAKE_CXX_FLAGS="${{matrix.feature[3]}}"
-DLANGULUS_ALIGNMENT=${{matrix.feature[1]}}
- name: Build
run: cmake --build out --config ${{matrix.build}}
- name: Test
run: cd out && ctest -V -C ${{matrix.build}}