Skip to content

Use a "distroless" Docker image #55

Use a "distroless" Docker image

Use a "distroless" Docker image #55

Workflow file for this run

name: Build application
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
IMAGE_NAME: ${{ github.repository }}
REGISTRY: ghcr.io
jobs:
test:
name: Run tests (${{ matrix.feature }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
feature:
- default
- tokio_channels
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Set up Cargo cache
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
./target
key: build-cargo-registry-${{ runner.os }}-${{ matrix.feature }}
- name: Run unit tests
run: cargo test --verbose --no-default-features --features ${{ matrix.feature }}
build:
name: Build binary - ${{ matrix.platform.os-name }}
needs: test
strategy:
fail-fast: false
matrix:
platform:
- os-name: Linux-x86_64
runs-on: ubuntu-latest
target: x86_64-unknown-linux-gnu
- os-name: Linux-aarch64
runs-on: ubuntu-latest
target: aarch64-unknown-linux-gnu
- os-name: Linux-armv7
runs-on: ubuntu-latest
target: armv7-unknown-linux-gnueabihf
- os-name: macOS-aarch64
runs-on: macOS-latest
target: aarch64-apple-darwin
- os-name: macOS-x86_64
runs-on: macOS-latest
target: x86_64-apple-darwin
- os-name: Windows-aarch64
runs-on: windows-latest
target: aarch64-pc-windows-msvc
- os-name: Windows-x86_64
runs-on: windows-latest
target: x86_64-pc-windows-msvc
runs-on: ${{ matrix.platform.runs-on }}
env:
NAME: cupcake
OS: ${{ matrix.platform.runs-on }}
TARGET: ${{ matrix.platform.target }}
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Build binary
uses: houseabsolute/actions-rust-cross@v1
with:
command: build
target: ${{ matrix.platform.target }}
args: "--locked --release"
strip: true
- name: Compress
shell: bash
run: |
mkdir -p ./artifacts
if [[ $OS =~ ^macos.*$ ]]; then
export PATH="$(brew --prefix gnu-tar)/libexec/gnubin:$PATH"
fi
if [[ $OS =~ ^windows.*$ ]]; then
EXEC=$NAME.exe
else
EXEC=$NAME
fi
mv ./target/$TARGET/release/$EXEC ./$EXEC
tar -czf ./artifacts/$NAME-$TARGET-${GITHUB_REF_NAME//\//-}.tar.gz $EXEC
- name: Archive artifact
uses: actions/upload-artifact@v4
with:
name: release-build-${{ matrix.platform.target }}
path: |
./artifacts
docker:
name: Build Docker image
needs: test
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v5
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=ref,event=tag
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
file: Dockerfile
context: .
push: ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') }}
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
deploy:
name: Attach downloads to release
needs: build
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
path: ./artifacts
pattern: release-build-*
merge-multiple: true
- name: Release to GitHub
uses: softprops/action-gh-release@v2
with:
files: ./artifacts/*.tar.gz