@@ -19,7 +19,7 @@ concurrency:
1919
2020jobs :
2121 setup :
22- runs-on : [self-hosted, linux, bigbox ]
22+ runs-on : [self-hosted, linux, x64 ]
2323 outputs :
2424 cache-key : ${{ steps.cache.outputs.key }}
2525 ubuntu-versions : ${{ steps.ubuntu.outputs.versions }}
5555 fi
5656
5757 lint-and-format :
58- runs-on : [self-hosted, linux, bigbox ]
58+ runs-on : [self-hosted, linux, x64 ]
5959 needs : [setup]
6060 timeout-minutes : 15 # Reduced timeout with faster runner
6161
@@ -103,7 +103,7 @@ jobs:
103103
104104 build-rust :
105105 needs : [setup, build-frontend]
106- runs-on : [self-hosted, linux, bigbox ]
106+ runs-on : [self-hosted, linux, x64 ]
107107 strategy :
108108 fail-fast : false
109109 matrix :
@@ -257,7 +257,7 @@ jobs:
257257 cache-key : ${{ needs.setup.outputs.cache-key }}
258258
259259 test-suite :
260- runs-on : [self-hosted, linux, bigbox ]
260+ runs-on : [self-hosted, linux, x64 ]
261261 needs : [setup, build-rust]
262262
263263 steps :
@@ -311,7 +311,7 @@ jobs:
311311 run : ./scripts/ci-check-tests.sh
312312
313313 test-desktop :
314- runs-on : [self-hosted, linux, bigbox ]
314+ runs-on : [self-hosted, linux, x64 ]
315315 needs : [setup, build-frontend]
316316 if : github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'desktop')
317317
@@ -369,7 +369,7 @@ jobs:
369369 secrets : inherit # pragma: allowlist secret
370370
371371 package-repository :
372- runs-on : [self-hosted, linux, bigbox ]
372+ runs-on : [self-hosted, linux, x64 ]
373373 needs : [setup, build-rust]
374374 if : github.event_name != 'pull_request'
375375 strategy :
@@ -404,7 +404,7 @@ jobs:
404404 retention-days : 90
405405
406406 security-scan :
407- runs-on : [self-hosted, linux, bigbox ]
407+ runs-on : [self-hosted, linux, x64 ]
408408 needs : build-docker
409409 if : github.event_name != 'pull_request'
410410
@@ -423,7 +423,7 @@ jobs:
423423 sarif_file : ' trivy-results.sarif'
424424
425425 release :
426- runs-on : [self-hosted, linux, bigbox ]
426+ runs-on : [self-hosted, linux, x64 ]
427427 needs : [build-rust, build-docker, build-tauri, test-suite, security-scan]
428428 if : startsWith(github.ref, 'refs/tags/')
429429
@@ -497,7 +497,7 @@ jobs:
497497 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
498498
499499 cleanup :
500- runs-on : [self-hosted, linux, bigbox ]
500+ runs-on : [self-hosted, linux, x64 ]
501501 needs : [build-rust, build-docker, build-tauri, test-suite]
502502 if : always() && github.event_name == 'pull_request'
503503
@@ -513,7 +513,7 @@ jobs:
513513 continue-on-error : true
514514
515515 summary :
516- runs-on : [self-hosted, linux, bigbox ]
516+ runs-on : [self-hosted, linux, x64 ]
517517 needs : [setup, build-frontend, build-rust, build-docker, build-tauri, test-suite]
518518 if : always()
519519
0 commit comments