summaryrefslogtreecommitdiff
path: root/.github/workflows/macos.yml
blob: f9f0bc296c7d34f989984e04c58c3b3c80e1f7b1 (plain)
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
name: macOS

on:
  push:
    branches: [ "*" ]
    tags: [ "*" ]
  pull_request:
    branches: [ "trunk" ]

env:
  MARGS: "-j2"
  
jobs:

  build:
    strategy:
      matrix:
        os: [ "macos-latest" ]

    runs-on: ${{ matrix.os }}
    env:
      NOTEST_CFLAGS: ${{ matrix.notest-cflags }}
    name: ${{ matrix.name }}
    steps:
    - uses: actions/checkout@v3
    - name: buildconf
      run: ./buildconf
    - name: configure
      run: ./configure
    - name: make
      run: make $MARGS
    - name: make check
      run: make check || true