diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2022-09-03 17:06:20 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2022-09-03 17:58:42 +0530 |
commit | 9bd827901cab399313bb04adef1f88d31e16807d (patch) | |
tree | 0a5c854228e6f403ef9c21e52fd8ba77eb9de6ae | |
parent | fcc4a0e64243071152ed5ac15dc2068628ee66f5 (diff) | |
download | meson-0.61.tar.gz |
ci: Fix macOS qt4 detection0.61
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 8b60b7584..56680c494 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -96,6 +96,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 |