Skip to content

version bump

version bump #571

name: Ubuntu 22.04 Sanitized CI (GCC 12, CXX 20)
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ubuntu-build:
runs-on: ubuntu-22.04
strategy:
matrix:
include:
- {shared: ON}
- {shared: OFF}
steps:
- uses: actions/checkout@v4
- name: Use cmake
run: |
mkdir build &&
cd build &&
CXX=g++-12 cmake -DSIMDUTF_CXX_STANDARD=20 -DCMAKE_CXX_FLAGS=-Werror -DCMAKE_INSTALL_PREFIX:PATH=destination -DBUILD_SHARED_LIBS=${{matrix.shared}} .. -DSIMDUTF_BENCHMARKS=OFF &&
cmake --build . &&
ctest -j --output-on-failure &&
cmake --install . &&
cd ../tests/installation_tests/find &&
mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX:PATH=../../../build/destination .. && cmake --build .