Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
avalonche committed Dec 11, 2024
1 parent 8a84861 commit 2798459
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,16 @@ permissions:
jobs:
docker-image:
name: Publish Docker Image
runs-on: ubuntu-latest-xlarge

strategy:
matrix:
config:
- target: x86_64-unknown-linux-gnu
runner: warp-ubuntu-latest-x64-16x
platform: linux/amd64
- target: aarch64-unknown-linux-gnu
runner: warp-ubuntu-latest-arm64-16x
platform: linux/arm64
runs-on: ${{ matrix.config.runner }}
steps:
- name: Checkout sources
uses: actions/checkout@v2
Expand Down Expand Up @@ -62,7 +70,7 @@ jobs:
push: true
build-args: |
VERSION=${{ env.RELEASE_VERSION }}
platforms: linux/amd64,linux/arm64
platforms: ${{ matrix.config.platform }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ FROM rust:1.82 as base

ARG FEATURES

RUN cargo install sccache --version ^0.8
RUN cargo install sccache --version ^0.9
RUN cargo install cargo-chef --version ^0.1

RUN apt-get update \
Expand Down

0 comments on commit 2798459

Please sign in to comment.