fix: Rust cache #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Controller | |
on: | |
push: | |
branches: | |
- "main" | |
paths: | |
- ".github/workflows/controller.yml" | |
- "operator/**" | |
jobs: | |
build: | |
continue-on-error: true | |
strategy: | |
matrix: | |
include: | |
- release_for: Linux-x86_64 | |
build_on: ubuntu-22.04 | |
target: x86_64-unknown-linux-gnu | |
args: "--locked --release" | |
- release_for: Linux-arm64 | |
build_on: ubuntu-22.04-arm | |
target: "aarch64-unknown-linux-gnu" | |
args: "--locked --release" | |
runs-on: ${{ matrix.build_on }} | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
shared-key: "release" | |
workspaces: operator -> target | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: Run cargo build | |
run: cargo build --target ${{ matrix.target }} ${{ matrix.args }} | |
working-directory: operator | |
- name: rename binaries | |
run: | | |
mv operator/target/${{ matrix.target }}/release/controller${{ matrix.ext }} controller-${{ matrix.release_for }}${{ matrix.ext }} | |
- name: upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: binaries-${{ matrix.release_for }} | |
path: controller-${{ matrix.release_for }}${{ matrix.ext }} | |
docker: | |
runs-on: ubuntu-latest | |
needs: [build] | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
pattern: binaries-* | |
merge-multiple: true | |
path: .github/image/bin | |
# we need to rename the artifact so that the name matches | |
# the value that Docker uses for TARGET_ARCH to keep the | |
# Dockerfile simple | |
- name: Rename artifacts | |
run: |+ | |
mv .github/image/bin/controller-Linux-x86_64 .github/image/bin/controller-Linux-amd64 | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: .github/image | |
platforms: linux/arm64,linux/amd64 | |
push: true | |
tags: ghcr.io/demeter-run/ext-cardano-dbsync-serverless,ghcr.io/demeter-run/ext-cardano-dbsync-serverless:${{ github.sha }} |