@@ -114,20 +114,20 @@ jobs:
114
114
- name : Intel
115
115
build_sh : " arch -X86_64 .ci/build-mac.sh"
116
116
UPLOAD_COMMIT_HASH : 8e21bdbc40711a3fccd18fbf17b742348b0f4281
117
- UPLOAD_REPO_FULL_NAME : " rpcs3/rpcs3-binaries-mac"
117
+ UPLOAD_REPO_FULL_NAME : rpcs3/rpcs3-binaries-mac
118
118
- name : Apple Silicon
119
- build_sh : " .ci/build-mac-arm64.sh"
119
+ build_sh : .ci/build-mac-arm64.sh
120
120
UPLOAD_COMMIT_HASH : 51ae32f468089a8169aaf1567de355ff4a3e0842
121
- UPLOAD_REPO_FULL_NAME : " rpcs3/rpcs3-binaries-mac-arm64"
121
+ UPLOAD_REPO_FULL_NAME : rpcs3/rpcs3-binaries-mac-arm64
122
122
name : RPCS3 Mac ${{ matrix.name }}
123
123
runs-on : macos-14
124
124
env :
125
- CCACHE_DIR : " /tmp/ccache_dir"
125
+ CCACHE_DIR : /tmp/ccache_dir
126
126
CI_HAS_ARTIFACTS : true
127
127
QT_VER : ' 6.7.3'
128
128
QT_VER_MAIN : ' 6'
129
129
LLVM_COMPILER_VER : ' 19'
130
- RELEASE_MESSAGE : " ../GitHubReleaseMessage.txt"
130
+ RELEASE_MESSAGE : ../GitHubReleaseMessage.txt
131
131
UPLOAD_COMMIT_HASH : ${{ matrix.UPLOAD_COMMIT_HASH }}
132
132
UPLOAD_REPO_FULL_NAME : ${{ matrix.UPLOAD_REPO_FULL_NAME }}
133
133
steps :
@@ -141,28 +141,19 @@ jobs:
141
141
with :
142
142
path : ${{ env.CCACHE_DIR }}
143
143
key : ${{ runner.os }}-ccache-${{ matrix.name }}-${{github.run_id}}
144
- restore-keys : |
144
+ restore-keys : |
145
145
${{ runner.os }}-ccache-${{ matrix.name }}-
146
146
147
- - name : Setup Homebrew Cache
148
- uses : actions/cache@main
149
- with :
150
- path : " ~/Library/Caches/Homebrew"
151
- key : ${{ runner.os }}-homebrew-${{ matrix.name }}
152
- restore-keys : |
153
- ${{ runner.os }}-homebrew-${{ matrix.name }}
154
-
155
147
- name : Setup Qt Cache
156
148
uses : actions/cache@main
157
149
with :
158
- path : " /tmp/Qt"
150
+ path : /tmp/Qt
159
151
key : ${{ runner.os }}-qt-${{ matrix.name }}-${{ env.QT_VER }}
160
- restore-keys : |
152
+ restore-keys : |
161
153
${{ runner.os }}-qt-${{ matrix.name }}-${{ env.QT_VER }}
162
154
163
155
- name : Build
164
- run : |
165
- ${{ matrix.build_sh }}
156
+ run : ${{ matrix.build_sh }}
166
157
167
158
- name : Upload artifacts
168
159
uses : actions/upload-artifact@main
@@ -183,11 +174,10 @@ jobs:
183
174
if : |
184
175
github.event_name != 'pull_request' &&
185
176
github.repository == 'RPCS3/rpcs3' &&
186
- github.ref == 'refs/heads/master'
177
+ github.ref == 'refs/heads/master'
187
178
env :
188
179
RPCS3_TOKEN : ${{ secrets.RPCS3_TOKEN }}
189
- run : |
190
- .ci/github-upload.sh
180
+ run : .ci/github-upload.sh
191
181
192
182
Windows_Build :
193
183
# Only run push event on master branch of main repo, but run all PRs
0 commit comments