Skip to content

WIP

WIP #49

Workflow file for this run

name: MacOS
on:
push:
branches:
- trunk
- main
pull_request:
branches:
- trunk
- main
env:
CTEST_OUTPUT_ON_FAILURE: 1
jobs:
build:
runs-on: macos-13
steps:
- name: Set up C++20
uses: actions/setup-cpp@v0.44.0
with: compiler:

Check failure on line 23 in .github/workflows/macos.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/macos.yml

Invalid workflow file

You have an error in your yaml syntax on line 23
clang cmake: true
ninja: true
ccache: true
vcpkg: true
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/cache@v3
with:
path: "build/vcpkg_installed/**/*"
key: ${{ github.workflow }}-vcpkg_installed
- name: install dependencies
run: |
brew install autoconf autoconf-archive automake coreutils libtool ninja pkg-config
- name: configure
run: |
cmake --preset linux-ninja-Debug
- name: build
run: |
cmake --build --preset linux-ninja-Debug
- name: test
run: |
./build/test/component-model-test