Skip to content

aligned readme to use the new env script name + aligned the test work… #33

aligned readme to use the new env script name + aligned the test work…

aligned readme to use the new env script name + aligned the test work… #33

Workflow file for this run

name: clang++
on:
push:
branches:
- '*'
pull_request:
branches:
- master
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_clang_17_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