Skip to content

updated the cpp-ap-demo submodule #108

updated the cpp-ap-demo submodule

updated the cpp-ap-demo submodule #108

Workflow file for this run

name: g++
on:
push:
branches:
- '*'
jobs:
build:
name: Build and run tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Prepare
env:
CC: gcc-11
CXX: g++-11
run: |
cmake -B build -DCMAKE_CXX_COMPILER=g++-11 -DCMAKE_C_COMPILER=gcc-11
continue-on-error: false
- name: Build test executable
run: |
cd build && make
continue-on-error: false
- name: Run tests
run: |
./build/test/run_tests
continue-on-error: false