Skip to content

Commit

Permalink
ci: arm
Browse files Browse the repository at this point in the history
Signed-off-by: tison <[email protected]>
  • Loading branch information
tisonkun committed Jan 18, 2025
1 parent d414bff commit 1613e9b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
1 change: 0 additions & 1 deletion .github/actions/docker-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ runs:
tags: |
type=semver,pattern={{raw}}
type=semver,pattern=v{{major}}
type=sha,format=long
type=edge,branch=main
- name: Push manifest
shell: bash
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ concurrency:
jobs:
check:
name: Check
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
Expand All @@ -50,7 +50,7 @@ jobs:
matrix:
rust-version: ["1.76.0", "stable"]
name: Build and test
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
Expand All @@ -66,7 +66,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
os: [ ubuntu-24.04 ]
runs-on: ${{matrix.os}}
name: Docker sanity check on ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-24.04, windows-2022, macos-14]
runs-on: ${{ matrix.os }}
name: Smoke test on ${{ matrix.os }}
steps:
Expand All @@ -122,7 +122,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-24.04, windows-2022, macos-14]
runs-on: ${{ matrix.os }}
name: Smoke test for GitHub Actions on ${{ matrix.os }}
steps:
Expand All @@ -138,7 +138,7 @@ jobs:

required:
name: Required
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: ${{ always() }}
needs:
- check
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:

jobs:
build-and-push-hawkeye-amd64:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
packages: write
steps:
Expand All @@ -37,7 +37,7 @@ jobs:
digest: ${{ steps.build.outputs.digest }}

build-and-push-hawkeye-arm64:
runs-on: buildjet-4vcpu-ubuntu-2204-arm
runs-on: ubuntu-24.04-arm
permissions:
packages: write
steps:
Expand All @@ -52,7 +52,7 @@ jobs:
digest: ${{ steps.build.outputs.digest }}

release-hawkeye:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
packages: write
needs:
Expand All @@ -69,7 +69,7 @@ jobs:
${{needs.build-and-push-hawkeye-arm64.outputs.digest}}
release-native:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
packages: write
needs:
Expand Down

0 comments on commit 1613e9b

Please sign in to comment.