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
2 changes: 1 addition & 1 deletion .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build-android:
runs-on: ubuntu-latest
runs-on: ubuntu-latest-8-cores
steps:
- uses: actions/checkout@v4

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/desktop-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build-macos:
runs-on: macos-latest
runs-on: macos-latest-xlarge
strategy:
matrix:
target: [universal-apple-darwin]
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
retention-days: 5

build-linux:
runs-on: ubuntu-latest
runs-on: ubuntu-latest-8-cores
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mobile-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build-ios:
runs-on: macos-latest
runs-on: macos-latest-xlarge
steps:
- uses: actions/checkout@v4

Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
fail-fast: false
matrix:
include:
- platform: macos-latest
- platform: macos-latest-xlarge
args: --target universal-apple-darwin
- platform: ubuntu-latest
- platform: ubuntu-latest-8-cores
args: ""

runs-on: ${{ matrix.platform }}
Expand All @@ -47,10 +47,10 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
targets: ${{ matrix.platform == 'macos-latest-xlarge' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}

- name: Cache Homebrew
if: matrix.platform == 'macos-latest'
if: matrix.platform == 'macos-latest-xlarge'
uses: actions/cache@v4
with:
path: |
Expand All @@ -62,14 +62,14 @@ jobs:
${{ runner.os }}-brew-

- name: Install sccache (macOS)
if: matrix.platform == 'macos-latest'
if: matrix.platform == 'macos-latest-xlarge'
run: |
brew install sccache
brew link --overwrite --force sccache
sccache --version

- name: Install sccache (Linux)
if: matrix.platform == 'ubuntu-latest'
if: matrix.platform == 'ubuntu-latest-8-cores'
run: |
SCCACHE_VERSION=0.8.2
SCCACHE_URL="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/mozilla/sccache/releases/download/v${SCCACHE_VERSION}/sccache-v${SCCACHE_VERSION}-x86_64-unknown-linux-musl.tar.gz"
Expand All @@ -81,14 +81,14 @@ jobs:
- name: Cache sccache
uses: actions/cache@v4
with:
path: ${{ matrix.platform == 'macos-latest' && '~/Library/Caches/Mozilla.sccache' || '~/.cache/sccache' }}
path: ${{ matrix.platform == 'macos-latest-xlarge' && '~/Library/Caches/Mozilla.sccache' || '~/.cache/sccache' }}
key: ${{ runner.os }}-sccache-release-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-sccache-release-
${{ runner.os }}-sccache-

- name: Install dependencies (Linux)
if: matrix.platform == 'ubuntu-latest'
if: matrix.platform == 'ubuntu-latest-8-cores'
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev \
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:

build-android:
needs: create-release
runs-on: ubuntu-latest
runs-on: ubuntu-latest-8-cores
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testflight-on-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
deploy-testflight:
needs: check-comment
if: needs.check-comment.outputs.should-deploy == 'true'
runs-on: macos-latest
runs-on: macos-latest-xlarge
steps:
- uses: actions/checkout@v4
with:
Expand Down
Loading