@@ -130,6 +130,11 @@ jobs:
130130 runs-on : macos-15
131131 UPLOAD_COMMIT_HASH : 8e21bdbc40711a3fccd18fbf17b742348b0f4281
132132 UPLOAD_REPO_FULL_NAME : rpcs3/rpcs3-binaries-mac-arm64
133+ - name : Apple Silicon (KosmicKrisp)
134+ runs-on : macos-26
135+ BUILD_MAC_KK : 1
136+ UPLOAD_COMMIT_HASH : " "
137+ UPLOAD_REPO_FULL_NAME : " "
133138 name : RPCS3 Mac ${{ matrix.name }}
134139 runs-on : ${{ matrix.runs-on }}
135140 env :
@@ -140,6 +145,7 @@ jobs:
140145 RELEASE_MESSAGE : ../GitHubReleaseMessage.txt
141146 UPLOAD_COMMIT_HASH : ${{ matrix.UPLOAD_COMMIT_HASH }}
142147 UPLOAD_REPO_FULL_NAME : ${{ matrix.UPLOAD_REPO_FULL_NAME }}
148+ BUILD_MAC_KK : ${{ matrix.BUILD_MAC_KK }}
143149 RUN_UNIT_TESTS : ${{ matrix.name == 'Apple Silicon' && (github.event_name == 'pull_request' && 'ON') || 'OFF' }}
144150 steps :
145151 - name : Checkout repository
@@ -183,6 +189,7 @@ jobs:
183189
184190 - name : Deploy master build to GitHub Releases
185191 if : |
192+ env.BUILD_MAC_KK == 0 &&
186193 github.event_name != 'pull_request' &&
187194 github.repository == 'RPCS3/rpcs3' &&
188195 github.ref == 'refs/heads/master'
@@ -191,14 +198,14 @@ jobs:
191198 run : .ci/github-upload.sh
192199
193200 - name : Save Build Ccache
194- if : github.ref == 'refs/heads/master'
201+ if : env.BUILD_MAC_KK == 0 && github.ref == 'refs/heads/master'
195202 uses : actions/cache/save@main
196203 with :
197204 path : ${{ env.CCACHE_DIR }}
198205 key : ${{ steps.restore-build-ccache.outputs.cache-primary-key }}
199206
200207 - name : Save Qt Cache
201- if : github.ref == 'refs/heads/master'
208+ if : env.BUILD_MAC_KK == 0 && github.ref == 'refs/heads/master'
202209 uses : actions/cache/save@main
203210 with :
204211 path : /tmp/Qt
0 commit comments