File tree 1 file changed +12
-5
lines changed
1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change 63
63
name : mac
64
64
needs : modify-plugin-version
65
65
runs-on : macos-latest
66
+ strategy :
67
+ fail-fast : false
68
+ matrix :
69
+ platform : [x64, arm64]
66
70
steps :
67
71
- uses : actions/checkout@v3
68
72
with :
@@ -75,18 +79,21 @@ jobs:
75
79
- name : Get Rack-SDK
76
80
run : |
77
81
pushd $HOME
78
- curl -o Rack-SDK.zip https://vcvrack.com/downloads/Rack-SDK-${{ env.rack-sdk-version }}-mac-x64 .zip
82
+ curl -o Rack-SDK.zip https://vcvrack.com/downloads/Rack-SDK-${{ env.rack-sdk-version }}-mac-${{ matrix.platform }} .zip
79
83
unzip Rack-SDK.zip
80
84
- name : Build plugin
81
85
run : |
86
+ CROSS_COMPILE_TARGET_x64=x86_64-apple-darwin
87
+ CROSS_COMPILE_TARGET_arm64=arm64-apple-darwin
82
88
export RACK_DIR=$HOME/Rack-SDK
83
- make -j dep
84
- make -j dist
89
+ export CROSS_COMPILE=$CROSS_COMPILE_TARGET_${{ matrix.platform }}
90
+ make dep
91
+ make dist
85
92
- name : Upload artifact
86
93
uses : actions/upload-artifact@v3
87
94
with :
88
- path : dist
89
- name : mac
95
+ path : dist/*.vcvplugin
96
+ name : mac-${{ matrix.platform }}
90
97
91
98
publish :
92
99
name : Publish plugin
You can’t perform that action at this time.
0 commit comments