File tree Expand file tree Collapse file tree 4 files changed +25
-2
lines changed Expand file tree Collapse file tree 4 files changed +25
-2
lines changed Original file line number Diff line number Diff line change @@ -221,3 +221,17 @@ jobs:
221221 shell : msys2 {0}
222222 run : make VERBOSE=1
223223
224+ macos_stable :
225+ runs-on : macos-latest
226+ steps :
227+ - name : Update repositories
228+ run : brew update
229+ - name : Install dependencies
230+ run : brew install make pkgconf cairo freetype
231+ - uses : actions/checkout@v3
232+ - name : Configure project
233+ run : gmake config STRICT=1 VERBOSE=1 FEATURES='lv2 ui'
234+ - name : Fetch project dependencies
235+ run : gmake fetch
236+ - name : Build project
237+ run : gmake VERBOSE=1
Original file line number Diff line number Diff line change 33*******************************************************************************
44
55=== 1.0.28 ===
6-
6+ * Updated build scripts and dependencies.
77
88=== 1.0.27 ===
99* Updated build scripts and dependencies.
Original file line number Diff line number Diff line change @@ -117,9 +117,13 @@ endif
117117# MacOS dependencies
118118MACOS_DEPENDENCIES = \
119119 LIBAUDIOTOOLBOX \
120+ LIBCAIRO \
121+ LIBCOCOA \
120122 LIBCOREFOUNDATION \
123+ LIBFONTCONFIG \
124+ LIBFREETYPE \
121125 LIBICONV \
122- LIBJACK
126+ LIBJACK
123127
124128MACOS_TEST_DEPENDENCIES =
125129
Original file line number Diff line number Diff line change @@ -117,6 +117,11 @@ LIBAUDIOTOOLBOX_NAME := libaudiotoolbox
117117LIBAUDIOTOOLBOX_TYPE := opt
118118LIBAUDIOTOOLBOX_LDFLAGS := -framework AudioToolbox
119119
120+ LIBCOCOA_VERSION := system
121+ LIBCOCOA_NAME := libcocoa
122+ LIBCOCOA_TYPE := opt
123+ LIBCOCOA_LDFLAGS := -framework Cocoa
124+
120125LIBCOREFOUNDATION_VERSION := system
121126LIBCOREFOUNDATION_NAME := libcorefoundation
122127LIBCOREFOUNDATION_TYPE := opt
You can’t perform that action at this time.
0 commit comments