Skip to content
Closed
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
14 changes: 7 additions & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,22 +79,22 @@ jobs:
matrix:
include:
- platform: linux
runner: ubuntu-latest
runner: depot-ubuntu-24.04
target: x86_64-unknown-linux-musl
binary_ext: ""
arch: x86_64
- platform: windows
runner: ubuntu-latest
runner: depot-ubuntu-24.04
target: x86_64-pc-windows-gnu
binary_ext: ".exe"
arch: x86_64
- platform: macos
runner: ubuntu-latest
runner: depot-ubuntu-24.04
target: x86_64-apple-darwin
binary_ext: ""
arch: x86_64
- platform: macos
runner: ubuntu-latest
runner: depot-ubuntu-24.04
target: aarch64-apple-darwin
binary_ext: ""
arch: aarch64
Expand Down Expand Up @@ -155,10 +155,10 @@ jobs:
include:
# TODO(RVT-4479): Add back ARM builder once manifest generation fixed
# - platform: linux/arm64
# runner: ubuntu-latest
# runner: depot-ubuntu-24.04
# arch_suffix: -arm64
- platform: linux/x86_64
runner: ubuntu-latest
runner: depot-ubuntu-24.04
# TODO: Replace with appropriate arch_suffix when needed
# arch_suffix: -amd64
arch_suffix: ''
Expand Down Expand Up @@ -246,4 +246,4 @@ jobs:
./scripts/release/main.ts --version "${{ github.event.inputs.version }}" --completeCi
else
./scripts/release/main.ts --version "${{ github.event.inputs.version }}" --no-latest --completeCi
fi
fi
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

# clippy:
# name: Clippy
# runs-on: ubuntu-latest
# runs-on: depot-ubuntu-24.04
# steps:
# - uses: actions/checkout@v4

Expand All @@ -59,7 +59,7 @@ jobs:

check:
name: Check
runs-on: ubuntu-latest
runs-on: depot-ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand All @@ -77,7 +77,7 @@ jobs:

test:
name: Test
runs-on: ubuntu-latest
runs-on: depot-ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand Down
Loading