diff options
author | Joseph Donofry <rubberduckie3554@gmail.com> | 2021-08-05 22:22:47 -0400 |
---|---|---|
committer | Joseph Donofry <rubberduckie3554@gmail.com> | 2021-08-05 22:22:47 -0400 |
commit | b156dd51cb8a393ab83af936767e95ce8379e157 (patch) | |
tree | 8fe7d4d9b6b35755cdeb8b6664ad9e0cf7f05972 /.gitlab-ci.yml | |
parent | Disable brew in macos CI (diff) | |
download | nheko-b156dd51cb8a393ab83af936767e95ce8379e157.tar.xz |
Update qt5 path after brew changes
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d551f2a3..e24c5c85 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -58,8 +58,8 @@ build-macos: - pip3 install dmgbuild - rm -rf ../.hunter && mv .hunter ../.hunter || true script: - - export PATH=/usr/local/opt/qt/bin/:${PATH} - - export CMAKE_PREFIX_PATH=/usr/local/opt/qt5 + - export PATH=/usr/local/opt/qt@5/bin/:${PATH} + - export CMAKE_PREFIX_PATH=/usr/local/opt/qt@5 - cmake -GNinja -H. -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=.deps/usr |