-
Notifications
You must be signed in to change notification settings - Fork 47
37 lines (31 loc) · 993 Bytes
/
macos.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: "macOS"
on:
push:
branches: [ master ]
pull_request:
# branches: [ master ]
jobs:
build_libebml:
name: libebml ${{ matrix.arch }}
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
arch: [x86_64, arm64]
env:
CMAKE_OPTIONS: -DDEV_MODE=ON -DBUILD_TESTING=ON -G Ninja
steps:
- uses: lukka/get-cmake@latest
- name: Get pushed code
uses: actions/checkout@v4
- name: Configure
run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built -DCMAKE_OSX_ARCHITECTURES="${{ matrix.arch }}"
- name: Build
run: cmake --build _build --parallel
- name: Test installation
run: cmake --install _build --prefix ${GITHUB_WORKSPACE}/_built
- name: Run tests
run: |
if [ $(uname -m) = "${{ matrix.arch }}" ]; then
ctest --test-dir _build;
fi