diff options
| author | Nirbheek Chauhan <nirbheek@centricular.com> | 2022-09-03 17:06:20 +0530 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2022-09-03 19:44:03 +0300 |
| commit | cc1dd6c1dda522894133f429d69f17c37045afba (patch) | |
| tree | 2cc25f573a5e10494852d6e6f6612867df0c5f68 | |
| parent | 251113fa67c90480707cae9341dd8387f3dd6bbd (diff) | |
| download | meson-cc1dd6c1dda522894133f429d69f17c37045afba.tar.gz | |
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.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 1bbb4fbb6..d8797b881 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 |
