diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ed5298467..1c4d5ae59 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -62,7 +62,7 @@ jobs: if: ${{ github.event.inputs.build-binary == 'true' || github.event_name == 'push'}} # when manually triggered or version tagged runs-on: ${{ matrix.configs.runner }} container: - image: ubuntu:22.04 + image: ubuntu:24.04 permissions: contents: write packages: write @@ -71,8 +71,8 @@ jobs: configs: - target: x86_64-unknown-linux-gnu runner: warp-ubuntu-latest-x64-32x - - target: aarch64-unknown-linux-gnu - runner: warp-ubuntu-latest-arm64-32x + # - target: aarch64-unknown-linux-gnu + # runner: warp-ubuntu-latest-arm64-32x # Paused until docker is pre-installed https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md # - target: aarch64-apple-darwin # runner: warp-macos-14-arm64-6x @@ -85,6 +85,7 @@ jobs: apt-get update apt-get install -y \ build-essential \ + cmake \ curl \ git \ libclang-dev \ @@ -212,6 +213,6 @@ jobs: cache-to: type=gha,mode=max context: . labels: ${{ steps.meta.outputs.labels }} - platforms: linux/amd64,linux/arm64 + platforms: linux/amd64 push: true tags: ${{ steps.meta.outputs.tags }}