Skip to content

Commit

Permalink
mac-os support
Browse files Browse the repository at this point in the history
  • Loading branch information
mibmo committed Jun 10, 2022
1 parent b0f63c7 commit 70c661f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 70c661f

Please sign in to comment.