Skip to content

Merge branch 'main' of https://github.com/TheNumbat/rpp #44

Merge branch 'main' of https://github.com/TheNumbat/rpp

Merge branch 'main' of https://github.com/TheNumbat/rpp #44

Workflow file for this run

name: macOS (aarch64)
on:
push:
branches:
- main
tags:
- '*'
pull_request:
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Clang 17
run: brew install llvm@17
- name: Configure
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DRPP_TEST=ON
env:
CXX: /opt/homebrew/opt/llvm@17/bin/clang++
- name: Build
run: cmake --build build -- -j
- name: Test
run: ctest --test-dir build --output-on-failure