We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a41343e commit 8eaad27Copy full SHA for 8eaad27
1 file changed
.github/workflows/build.yml
@@ -9,13 +9,7 @@ on:
9
10
jobs:
11
build:
12
- strategy:
13
- fail-fast: false
14
- matrix:
15
- os: [macos-latest]
16
-
17
- runs-on: ${{ matrix.os }}
18
+ runs-on: macos-latest
19
steps:
20
- name: Checkout repository
21
uses: actions/checkout@v4
@@ -27,16 +21,19 @@ jobs:
27
with:
28
22
python-version: "3.x"
29
23
24
+ - name: Install macOS build dependencies
25
+ run: |
26
+ brew update
+ brew install autoconf automake libtool pkg-config
+
30
- name: Clone Rack
31
run: |
32
git clone --recursive https://github.com/VCVRack/Rack.git rack
33
34
- # Build Rack dependencies (jansson, glew, rtaudio, etc.)
35
- name: Build Rack dependencies
36
37
make -C rack dep
38
39
- # REQUIRED: build Rack itself (creates libRack)
40
- name: Build Rack
41
42
make -C rack
0 commit comments