Skip to content

Dynamic dispatch for block codecs #145

Dynamic dispatch for block codecs

Dynamic dispatch for block codecs #145

Workflow file for this run

name: Pull Request
on:
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
compiler: [gcc13, clang16]
standard: [17]
include:
- compiler: gcc13 # Extra test for C++20
standard: 20
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Bulid docker image
shell: bash
run: |
docker build --build-arg CXX_STANDARD=${{matrix.standard}} \
-t pisa -f- . < "${{runner.workspace}}/pisa/test/docker/${{matrix.compiler}}/Dockerfile"
- name: Test
shell: bash
run: docker run pisa ctest -VV -j 4