From 70c661f484f66b316ba49b179b8e775114d03864 Mon Sep 17 00:00:00 2001 From: mib Date: Sat, 11 Jun 2022 01:27:31 +0200 Subject: [PATCH] mac-os support --- .github/workflows/build.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ece52f7..14b004a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -16,10 +16,16 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest] + os: [ubuntu-latest, macos-latest] steps: + # Download dependencies depending on platform - name: Download build tools + if: matrix.os == "ubuntu-latest" run: sudo apt-get install build-essential libtool autopoint + - name: Download build tools + if: matrix.os == "macos-latest" + run: sudo brew install libtool automake gettext + - name: Checkout repository uses: actions/checkout@v3 - name: Download dependencies