2021-03-01 18:03:35 +00:00
|
|
|
name: Build and test on macOS
|
2021-03-02 13:20:57 +00:00
|
|
|
on: [push, pull_request]
|
2022-10-13 20:32:01 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
2021-03-01 18:03:35 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os:
|
2022-09-10 15:19:52 +00:00
|
|
|
- macos-11
|
|
|
|
- macos-12
|
2021-03-01 18:03:35 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
brew install \
|
|
|
|
docbook2x \
|
|
|
|
freetype \
|
|
|
|
gettext \
|
|
|
|
imlib2 \
|
|
|
|
lcov \
|
|
|
|
librsvg \
|
|
|
|
libxft \
|
|
|
|
libxinerama \
|
|
|
|
lua
|
|
|
|
- name: Checkout
|
2022-10-13 20:47:26 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-03-01 18:03:35 +00:00
|
|
|
- name: Configure with CMake
|
|
|
|
run: |
|
2022-10-06 18:38:20 +00:00
|
|
|
set -x
|
2021-03-01 18:03:35 +00:00
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake .. \
|
|
|
|
-DMAINTAINER_MODE=ON \
|
|
|
|
-DBUILD_TESTS=ON
|
|
|
|
- name: Compile
|
|
|
|
working-directory: build
|
|
|
|
run: make -j5
|
|
|
|
- name: Test
|
|
|
|
working-directory: build
|
|
|
|
run: make test
|