From d9f20a41224265573395381fbbdea40ac9891d84 Mon Sep 17 00:00:00 2001 From: NRK Date: Mon, 8 Aug 2022 01:00:14 +0600 Subject: [ci]: build with macos on github should help catch *BSD compilation issues. --- .github/workflows/build.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to '.github/workflows') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cfa9e1b..69d9270 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,3 +33,18 @@ jobs: # ensure minimal-build works without opt deps installed sudo apt-get remove libxft2 libxft-dev libexif12 libexif-dev >/dev/null build "0" "minimal" + macOS-build: + runs-on: macOS-latest + steps: + - uses: actions/checkout@v2 + - name: dep + run: | + brew update + brew install imlib2 libx11 libxft libexif giflib webp + - name: build + run: | + # libinotify-kqueue isn't available on homebrew + make clean && make -s CC=gcc OPT_DEP_DEFAULT=1 HAVE_INOTIFY=0 + # force uninstallation with --ignore-dependencies + brew uninstall --ignore-dependencies libxft libexif giflib webp + make clean && make -s CC=gcc OPT_DEP_DEFAULT=0 -- cgit v1.2.3-54-g00ecf