aboutsummaryrefslogtreecommitdiff
path: root/contrib/libfido2/.github/workflows/macos_builds.yml
blob: 7d84a750ac37dd832f225452cb1a28d28343eddc (plain) (blame)
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
# Copyright (c) 2022 Yubico AB. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
# SPDX-License-Identifier: BSD-2-Clause

name: macos

on:
  pull_request:
    branches:
    - main
  push:
    branches:
    - main
    - '*-ci'

jobs:
  build:
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        os: [ macos-13, macos-12 ]
        cc: [ clang ]
    steps:
    - uses: actions/checkout@v4
    - name: dependencies
      run: brew install libcbor llvm mandoc openssl@3.0 pkg-config zlib
    - name: build
      env:
        CC: ${{ matrix.cc }}
      run: ./.actions/build-osx-clang