From 22d73da53699f8362a96c101144194ddbad23a27 Mon Sep 17 00:00:00 2001 From: Adam Honse Date: Wed, 3 Mar 2021 23:32:36 -0600 Subject: [PATCH] Add MacOS target to CI --- .gitlab-ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9f1884bd..3606d1f3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -247,3 +247,21 @@ build_windows_64: paths: - _build/*.7z expire_in: 30 days + +#-----------------------------------------------------------------------# +# MacOS Build Target # +#-----------------------------------------------------------------------# +build_macos: + tags: + - macos + stage: build + script: + - eval $(/opt/homebrew/bin/brew shellenv) + - qmake OpenRGB.pro + - make -j16 + - macdeployqt OpenRGB.app -codesign=OpenRGB + + artifacts: + paths: + - OpenRGB.app + expire_in: 30 days