1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-01-28 09:38:38 +00:00
conky/.github/workflows/build-and-test-macos.yaml

40 lines
910 B
YAML
Raw Normal View History

2021-03-01 12:03:35 -06:00
name: Build and test on macOS
on: [push, pull_request]
2021-03-01 12:03:35 -06:00
jobs:
build:
strategy:
matrix:
os:
2022-09-10 10:19:52 -05:00
- macos-11
- macos-12
2021-03-01 12:03:35 -06:00
runs-on: ${{ matrix.os }}
steps:
- name: Install dependencies
run: |
brew install \
docbook2x \
freetype \
gettext \
imlib2 \
lcov \
librsvg \
libxft \
libxinerama \
lua
- name: Checkout
uses: actions/checkout@v2
- name: Configure with CMake
run: |
2022-10-06 13:38:20 -05:00
set -x
2021-03-01 12:03:35 -06: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