Made count_true a new format callable #2786
Workflow file for this run
This file contains hidden or 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
#################################################################################################### | |
## EVE - Expressive Vector Engine | |
## Copyright : EVE Project Contributors | |
## SPDX-License-Identifier: BSL-1.0 | |
#################################################################################################### | |
name: EVE - Documentation Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: doc-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
################################################################################################## | |
## Randomized precision tests | |
################################################################################################## | |
documentation: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/jfalcou/compilers:v7 | |
strategy: | |
fail-fast: false | |
matrix: | |
cfg: | |
- { comp: clang, arch: x86 , opts: -msse2 , pch: ON} | |
- { comp: clang, arch: x86 , opts: -mavx2 , pch: ON} | |
- { comp: clang, arch: aarch64, opts: -Wno-psabi, pch: ON} | |
- { comp: clang, arch: x86 , opts: -msse2 , pch: OFF} | |
- { comp: gcc , arch: x86 , opts: -msse2 , pch: OFF} | |
steps: | |
- name: Fetch current branch | |
uses: actions/checkout@v4.1.1 | |
- name: Prepare EVE with ${{ matrix.cfg.comp }} @ ${{ matrix.cfg.arch }} with ${{ matrix.cfg.opts }} | |
run: | | |
mkdir build | |
cd build | |
cmake .. -G Ninja -DEVE_OPTIONS="${{ matrix.cfg.opts }}" \ | |
-DCMAKE_TOOLCHAIN_FILE="../cmake/toolchain/${{ matrix.cfg.comp }}.${{ matrix.cfg.arch }}.cmake" \ | |
-DEVE_USE_PCH=${{ matrix.cfg.arch }} | |
- name: Compile Documentation Tests | |
run: | | |
cd build | |
ninja doc.exe -j 4 | |
- name: Running Random Sampling Tests | |
run: | | |
cd build | |
ctest --output-on-failure -j 4 -R ^doc.*.exe |