On '1.7.x-cmake-improvements' branch: Merge r1895519, r1895520 from t… #450
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |