Skip to content

ci: Release automation #240

ci: Release automation

ci: Release automation #240

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ main ]
tags:
- "v*"
pull_request:
branches: [ main ]
workflow_dispatch:
inputs:
build_windows:
description: 'Run full Windows image build'
required: false
type: boolean
default: false
env:
IMAGE_NAME: rust-llvm
jobs:
# Push image to GitHub Packages.
# See also https://docs.docker.com/docker-hub/builds/
build-linux:
runs-on: ${{ matrix.config.os }}
strategy:
matrix:
config:
- {
os: "ubuntu-latest",
version: "linux",
arch: "x86_64"
}
- {
os: "ubuntu-24.04-arm",
version: "linux",
arch: "arm64"
}
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v3
- name: Build image
working-directory: ${{ matrix.config.version }}
shell: bash
run: docker buildx build . --platform ${{matrix.config.version}}/${{matrix.config.arch}} --file Dockerfile --tag $IMAGE_NAME
- name: Log in to registry
if: ${{ github.event_name != 'pull_request' }}
# This is where you will update the PAT to GITHUB_TOKEN
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Push image
shell: bash
if: ${{ github.event_name != 'pull_request' }}
run: |
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
# Change all uppercase to lowercase
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
# Strip git ref prefix from version
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# Strip "v" prefix from tag name
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
# Use Docker `latest` tag convention
[ "$VERSION" == "main" ] && VERSION=latest
#Add the platform to the version
VERSION=$VERSION-${{ matrix.config.arch }}
echo IMAGE_ID=$IMAGE_ID
echo VERSION=$VERSION
docker tag $IMAGE_NAME $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION
validate-windows:
name: Validate Windows Dockerfile
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Lint Dockerfile
uses: hadolint/hadolint-action@v3.1.0
with:
dockerfile: windows/Dockerfile
# DL3006: Always tag image - we use ARG for version, hadolint doesn't understand this
# DL3020: Use COPY instead of ADD - we use ADD for URLs which is valid
# DL3059: Multiple consecutive RUN - acceptable for clarity in Windows Dockerfiles
# SC1001: Escape sequences - Windows uses backtick, not backslash
ignore: DL3006,DL3020,DL3059,SC1001
build-windows:
name: Build Windows image
runs-on: windows-2022
if: ${{ github.event_name == 'workflow_dispatch' && inputs.build_windows }}
steps:
- uses: actions/checkout@v3
- name: Build image
working-directory: windows
env:
DOCKER_BUILDKIT: 0
run: docker build . --tag ${{ env.IMAGE_NAME }}
publish-devcontainer:
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: "Publish Templates"
uses: devcontainers/action@v1
with:
publish-templates: "true"
base-path-to-templates: "./devcontainer"
generate-docs: "true"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
push-multiplatform:
name: Push multi platform
needs: build-linux
runs-on: ubuntu-latest
if: ${{ github.event_name != 'pull_request' }}
steps:
- name: Log in to registry
if: ${{ github.event_name != 'pull_request' }}
# This is where you will update the PAT to GITHUB_TOKEN
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Get images
shell: bash
run: |
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
# Change all uppercase to lowercase
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
# Strip git ref prefix from version
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# Strip "v" prefix from tag name
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
# Use Docker `latest` tag convention
[ "$VERSION" == "main" ] && VERSION=latest
docker manifest create $IMAGE_ID:$VERSION $IMAGE_ID:$VERSION-arm64 $IMAGE_ID:$VERSION-x86_64
docker manifest push $IMAGE_ID:$VERSION