Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/ci-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ concurrency:

jobs:
setup:
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]
outputs:
cache-key: ${{ steps.cache.outputs.key }}
ubuntu-versions: ${{ steps.ubuntu.outputs.versions }}
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
fi

lint-and-format:
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]
needs: [setup]
timeout-minutes: 15 # Reduced timeout with faster runner

Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:

build-rust:
needs: [setup, build-frontend]
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -257,7 +257,7 @@ jobs:
cache-key: ${{ needs.setup.outputs.cache-key }}

test-suite:
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]
needs: [setup, build-rust]

steps:
Expand Down Expand Up @@ -311,7 +311,7 @@ jobs:
run: ./scripts/ci-check-tests.sh

test-desktop:
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]
needs: [setup, build-frontend]
if: github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'desktop')

Expand Down Expand Up @@ -369,7 +369,7 @@ jobs:
secrets: inherit # pragma: allowlist secret

package-repository:
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]
needs: [setup, build-rust]
if: github.event_name != 'pull_request'
strategy:
Expand Down Expand Up @@ -404,7 +404,7 @@ jobs:
retention-days: 90

security-scan:
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]
needs: build-docker
if: github.event_name != 'pull_request'

Expand All @@ -423,7 +423,7 @@ jobs:
sarif_file: 'trivy-results.sarif'

release:
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]
needs: [build-rust, build-docker, build-tauri, test-suite, security-scan]
if: startsWith(github.ref, 'refs/tags/')

Expand Down Expand Up @@ -497,7 +497,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

cleanup:
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]
needs: [build-rust, build-docker, build-tauri, test-suite]
if: always() && github.event_name == 'pull_request'

Expand All @@ -513,7 +513,7 @@ jobs:
continue-on-error: true

summary:
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]
needs: [setup, build-frontend, build-rust, build-docker, build-tauri, test-suite]
if: always()

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci-optimized.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ concurrency:

jobs:
setup:
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]
outputs:
cache-key: ${{ steps.cache.outputs.key }}
ubuntu-versions: ${{ steps.ubuntu.outputs.versions }}
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
fi

build-base-image:
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]
needs: setup
if: needs.setup.outputs.should-build == 'true'
outputs:
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
retention-days: 1

lint-and-format:
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]
needs: [setup, build-base-image]
if: needs.setup.outputs.should-build == 'true'

Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
cache-key: ${{ needs.setup.outputs.cache-key }}

build-rust:
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]
needs: [setup, build-base-image, build-frontend, lint-and-format]
if: needs.setup.outputs.should-build == 'true'
strategy:
Expand Down Expand Up @@ -235,7 +235,7 @@ jobs:
retention-days: 30

test:
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]
needs: [setup, build-base-image, build-rust]
if: needs.setup.outputs.should-build == 'true'

Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
summary:
needs: [lint-and-format, build-frontend, build-rust, test]
if: always()
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]

steps:
- name: Check all jobs succeeded
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/claude-code-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
# github.event.pull_request.user.login == 'new-developer' ||
# github.event.pull_request.author_association == 'FIRST_TIME_CONTRIBUTOR'

runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]
permissions:
contents: read
pull-requests: read
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ env:
jobs:
build:
name: Build Documentation
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64]
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
name: Deploy Preview
needs: build
if: github.event_name == 'pull_request' || (github.event_name == 'workflow_dispatch' && github.event.inputs.environment == 'preview')
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64]
permissions:
contents: read
deployments: write
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
name: Deploy Production
needs: build
if: (github.event_name == 'push' && github.ref == 'refs/heads/main') || (github.event_name == 'workflow_dispatch' && github.event.inputs.environment == 'production')
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64]
permissions:
contents: read
deployments: write
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
purge-cache:
name: Purge CDN Cache
needs: deploy-production
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64]
permissions:
id-token: write
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-multiarch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ env:

jobs:
build-and-push:
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64]
strategy:
matrix:
ubuntu-version: ${{ fromJSON(inputs.ubuntu-versions) }}
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:

build-summary:
needs: build-and-push
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64]
if: always()

steps:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/earthly-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ concurrency:

jobs:
setup:
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]
outputs:
should-build: ${{ steps.changes.outputs.should-build }}

Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
lint-and-format:
needs: setup
if: needs.setup.outputs.should-build == 'true'
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]

steps:
- name: Checkout code
Expand All @@ -66,7 +66,7 @@ jobs:
build-frontend:
needs: setup
if: needs.setup.outputs.should-build == 'true'
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]

steps:
- name: Checkout code
Expand All @@ -88,7 +88,7 @@ jobs:
build-native:
needs: [setup, lint-and-format, build-frontend]
if: needs.setup.outputs.should-build == 'true'
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]

steps:
- name: Checkout code
Expand All @@ -112,7 +112,7 @@ jobs:
test:
needs: [setup, build-native]
if: needs.setup.outputs.should-build == 'true'
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]

steps:
- name: Checkout code
Expand All @@ -128,7 +128,7 @@ jobs:
build-cross:
needs: [setup, build-native]
if: needs.setup.outputs.should-build == 'true' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/'))
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
earthly-success:
needs: [lint-and-format, build-frontend, build-native, test]
if: always()
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]
steps:
- name: Check all jobs succeeded
if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:

jobs:
build:
runs-on: [self-hosted, linux, bigbox]
runs-on: [self-hosted, linux, x64]
timeout-minutes: 20 # Reduced timeout with faster runner
outputs:
dist-path: ${{ steps.build.outputs.dist-path }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/package-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:

jobs:
release:
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64]
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-tauri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
include:
- platform: macos-latest
- platform: [self-hosted, macOS, X64]
webkit-package: ""
- platform: ubuntu-22.04
webkit-package: "libwebkit2gtk-4.0-dev"
Expand Down
Loading
Loading