Skip to content

[1.x] add option summary #629

[1.x] add option summary

[1.x] add option summary #629

Workflow file for this run

name: "macOS Build"
on:
push:
branches: [ v1.x ]
pull_request:
# branches: [ master ]
jobs:
build_libebml:
name: libebml for macOS
runs-on: macos-latest
steps:
- name: Get pushed code
uses: actions/checkout@v3
- name: Configure CMake
run: cmake -S . -B _build -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built
- name: Build with CMake
run: cmake --build _build --parallel
- name: Test installation
run: cmake --install _build --prefix ${GITHUB_WORKSPACE}/_built