From cc1dd6c1dda522894133f429d69f17c37045afba Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Sat, 3 Sep 2022 17:06:20 +0530 Subject: 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. --- .github/workflows/macos.yml | 3 +++ 1 file changed, 3 insertions(+) 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 -- cgit v1.1