Skip to content

Commit

Permalink
GHA for building and releasing improvements (#446)
Browse files Browse the repository at this point in the history
* release tags and every commit from branches

* change to file

* setup buildx

* use bullseye
  • Loading branch information
rjonczy authored Nov 2, 2023
1 parent d05ec4b commit 02ce69e
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 8 deletions.
42 changes: 36 additions & 6 deletions .github/workflows/hyperspace-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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 }}
4 changes: 2 additions & 2 deletions scripts/hyperspace.Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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

Expand Down

0 comments on commit 02ce69e

Please sign in to comment.