aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2022-09-03 17:06:20 +0530
committerJussi Pakkanen <jpakkane@gmail.com>2022-09-03 19:44:03 +0300
commitcc1dd6c1dda522894133f429d69f17c37045afba (patch)
tree2cc25f573a5e10494852d6e6f6612867df0c5f68
parent251113fa67c90480707cae9341dd8387f3dd6bbd (diff)
downloadmeson-cc1dd6c1dda522894133f429d69f17c37045afba.zip
meson-cc1dd6c1dda522894133f429d69f17c37045afba.tar.gz
meson-cc1dd6c1dda522894133f429d69f17c37045afba.tar.bz2
ci: Fix macOS qt4 detection
Need to link the qt4 install so it's in PATH. Also need to use a symlink to fix breakage in the Tap.
-rw-r--r--.github/workflows/macos.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 1bbb4fb..d8797b8 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -100,6 +100,9 @@ jobs:
- run: brew install pkg-config ninja gcc
- run: brew tap cartr/qt4
- run: brew install qt@4
+ - run: brew link qt@4
+ # qt4 tap seems to be broken
+ - run: ln -sfn /usr/local/Cellar/qt@4/4.8.7_6.reinstall /usr/local/Cellar/qt@4/4.8.7_6
- run: meson setup "test cases/frameworks/4 qt" build -Drequired=qt4
- run: meson compile -C build
- uses: actions/upload-artifact@v1