Skip to content

lemire/more constexpr #594

lemire/more constexpr

lemire/more constexpr #594

Workflow file for this run

name: macos (Installation)
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
paths-ignore:
- '**.md'
- 'docs/**'
push:
branches:
- main
paths-ignore:
- '**.md'
- 'docs/**'
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ubuntu-build:
runs-on: macos-latest
strategy:
matrix:
include:
shared: [ON, OFF]

Check failure on line 29 in .github/workflows/macos_install.yml

View workflow run for this annotation

GitHub Actions / macos (Installation)

Invalid workflow file

The workflow is not valid. .github/workflows/macos_install.yml (Line: 29, Col: 11): A mapping was not expected
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Prepare
run: cmake -DBUILD_SHARED_LIBS=${{matrix.shared}} -DCMAKE_INSTALL_PREFIX:PATH=destination -B build
- name: Build
run: cmake --build build -j=3
- name: Install
run: cmake --install build
- name: Prepare test package
run: cmake -DCMAKE_INSTALL_PREFIX:PATH=../../destination -S tests/installation -B buildbabyada
- name: Build test package
run: cmake --build buildbabyada
- name: Run example
run: ./buildbabyada/main