File tree Expand file tree Collapse file tree 4 files changed +25
-1
lines changed Expand file tree Collapse file tree 4 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -221,3 +221,17 @@ jobs:
221
221
shell : msys2 {0}
222
222
run : make VERBOSE=1
223
223
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 4
4
5
5
=== 1.0.31 ===
6
6
* Added left/right and mid/side linking in the UI.
7
+ * Updated build scripts and dependencies.
7
8
8
9
=== 1.0.30 ===
9
10
* Updated build scripts and dependencies.
Original file line number Diff line number Diff line change @@ -117,9 +117,13 @@ endif
117
117
# MacOS dependencies
118
118
MACOS_DEPENDENCIES = \
119
119
LIBAUDIOTOOLBOX \
120
+ LIBCAIRO \
121
+ LIBCOCOA \
120
122
LIBCOREFOUNDATION \
123
+ LIBFONTCONFIG \
124
+ LIBFREETYPE \
121
125
LIBICONV \
122
- LIBJACK
126
+ LIBJACK
123
127
124
128
MACOS_TEST_DEPENDENCIES =
125
129
Original file line number Diff line number Diff line change @@ -117,6 +117,11 @@ LIBAUDIOTOOLBOX_NAME := libaudiotoolbox
117
117
LIBAUDIOTOOLBOX_TYPE := opt
118
118
LIBAUDIOTOOLBOX_LDFLAGS := -framework AudioToolbox
119
119
120
+ LIBCOCOA_VERSION := system
121
+ LIBCOCOA_NAME := libcocoa
122
+ LIBCOCOA_TYPE := opt
123
+ LIBCOCOA_LDFLAGS := -framework Cocoa
124
+
120
125
LIBCOREFOUNDATION_VERSION := system
121
126
LIBCOREFOUNDATION_NAME := libcorefoundation
122
127
LIBCOREFOUNDATION_TYPE := opt
You can’t perform that action at this time.
0 commit comments