diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-04-04 10:25:47 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-04-04 11:09:17 -0700 |
commit | 039ed38067a9d34c8625b2b8b260822c8f65d63e (patch) | |
tree | 382c041b458115a544e8b53cc35a3b3d90f01a17 /.github/workflows | |
parent | 0d8324bfb43ea405b57340e910b05b88e364afaa (diff) | |
download | subsurface-039ed38067a9d34c8625b2b8b260822c8f65d63e.tar.gz |
GitHub Actions: add pkg-config to iOS build
Our builds fail because we are missing pkg-config.
I'm not quite sure if this is triggered by a new dependency or if pkg-config
used to be there and now isn't. Either way, this should hopefully fix things.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ios.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 013371af0..412ac815b 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -14,7 +14,7 @@ jobs: - name: checkout sources uses: actions/checkout@v1 - name: setup Homebrew - run: brew install autoconf automake libtool + run: brew install autoconf automake libtool pkg-config - name: set our Qt build run: | env |