From 02ce69e2843e7986febdcf795f69a757ce569272 Mon Sep 17 00:00:00 2001 From: Robert Jonczy Date: Thu, 2 Nov 2023 12:27:27 +0100 Subject: [PATCH] GHA for building and releasing improvements (#446) * release tags and every commit from branches * change to file * setup buildx * use bullseye --- .github/workflows/hyperspace-docker-image.yml | 42 ++++++++++++++++--- scripts/hyperspace.Dockerfile | 4 +- 2 files changed, 38 insertions(+), 8 deletions(-) diff --git a/.github/workflows/hyperspace-docker-image.yml b/.github/workflows/hyperspace-docker-image.yml index a38ef8ecb..48ba554e4 100644 --- a/.github/workflows/hyperspace-docker-image.yml +++ b/.github/workflows/hyperspace-docker-image.yml @@ -3,16 +3,27 @@ name: "Build and publish Hyperspace Docker image" on: push: branches: - - master + - '*' + tags: + - 'v*' + +env: + IMAGE_NAME: ${{ github.repository }} jobs: + build-and-publish: + + name: Build & push docker image + runs-on: - self-hosted - x64-monster + concurrency: group: hyperspace-docker-image-${{ github.ref }} cancel-in-progress: true + strategy: fail-fast: true @@ -31,14 +42,33 @@ jobs: with: fetch-depth: 0 + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@v5 + with: + images: ${{ env.IMAGE_NAME }} + tags: | + type=semver,pattern={{version}} + type=semver,pattern={{major}}.{{minor}} + type=ref,event=branch + type=sha,prefix={{branch}}- + - name: Login to Docker Hub uses: docker/login-action@v2 with: username: ${{ secrets.DOCKER_HUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} - - name: Build Docker image - run: make -f hyperspace/Makefile build-docker-image-hyperspace - - - name: Docker push - run: make -f hyperspace/Makefile publish-docker-image-hyperspace + - name: Build and push Docker image + uses: docker/build-push-action@v5 + with: + file: scripts/hyperspace.Dockerfile + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} diff --git a/scripts/hyperspace.Dockerfile b/scripts/hyperspace.Dockerfile index c45a6db9b..945fe0cd6 100644 --- a/scripts/hyperspace.Dockerfile +++ b/scripts/hyperspace.Dockerfile @@ -1,4 +1,4 @@ -FROM paritytech/ci-unified:bullseye-1.71.0-v20230727 as builder +FROM paritytech/ci-unified:bullseye-1.73.0-2023-05-23 as builder WORKDIR /code @@ -14,7 +14,7 @@ RUN cargo build --release --locked -p hyperspace # ============= -FROM debian:buster-slim +FROM debian:bullseye-slim RUN useradd -m -u 1000 -U -s /bin/sh -d /centauri centauri