mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-15 17:47:09 +00:00
52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
name: Build and test on macOS
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- macos-11
|
|
- macos-12
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: Install dependencies
|
|
run: |
|
|
brew install \
|
|
cmake \
|
|
freetype \
|
|
gettext \
|
|
imlib2 \
|
|
lcov \
|
|
librsvg \
|
|
libxft \
|
|
libxinerama \
|
|
lua \
|
|
ninja
|
|
pkg-config \
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Configure with CMake
|
|
run: |
|
|
set -x
|
|
mkdir build
|
|
cd build
|
|
cmake .. -G Ninja \
|
|
-DMAINTAINER_MODE=ON \
|
|
-DBUILD_WAYLAND=OFF \
|
|
-DBUILD_TESTS=ON
|
|
- name: Compile
|
|
run: cmake --build build
|
|
- name: Test
|
|
working-directory: build
|
|
run: ctest
|