Skip to content

YT-CPPAP-8: Fix typos and rename some elements #97

YT-CPPAP-8: Fix typos and rename some elements

YT-CPPAP-8: Fix typos and rename some elements #97

Workflow file for this run

name: g++
on:
push:
branches:
- '*'
jobs:
build:
name: Build examples
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
shell: bash
env:
CC: gcc-11
CXX: g++-11
run: |
cd example
cmake -B build -DCMAKE_CXX_COMPILER=g++-11 -DCMAKE_C_COMPILER=gcc-11
cd build
make
continue-on-error: false