Skip to content

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

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

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

Workflow file for this run

name: clang++
on:
push:
branches:
- '*'
jobs:
build:
name: Build examples
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Prepare
shell: bash
run: |
sudo bash ./scripts/env/install_clang17_toolchain.sh
continue-on-error: false
- name: Build
shell: bash
env:
CC: clang-17
CXX: clang++-17
run: |
cd example
cmake -B build -DCMAKE_CXX_COMPILER=clang++-17 -DCMAKE_C_COMPILER=clang-17
cd build
make
continue-on-error: false