Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add docker container flows #58

Merged
merged 1 commit into from Jun 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/docker-build.yml
@@ -0,0 +1,30 @@
name: Docker

# Trigger on pushes to master branch, new semantic version tags, and pull request updates
on:
workflow_dispatch:
push:
branches:
- "main"
tags:
- "v[0-9]+.[0-9]+.[0-9]+--.*"
joroshiba marked this conversation as resolved.
Show resolved Hide resolved
- "v[0-9]+.[0-9]+.[0-9]+-alpha.[0-9]+--.*"
- "v[0-9]+.[0-9]+.[0-9]+-beta.[0-9]+--.*"
- "v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+--.*"
# trigger on pull request updates when target is `main` branch
pull_request:
branches:
- "main"

jobs:
conductor:
uses: './.github/workflows/reusable-docker-build.yml'
with:
package-name: conductor
dockerfile: crates/astria-conductor/Dockerfile

sequencer-relayer:
uses: './.github/workflows/reusable-docker-build.yml'
with:
package-name: sequencer-relayer
dockerfile: crates/astria-sequencer-relayer/Dockerfile
59 changes: 59 additions & 0 deletions .github/workflows/reusable-docker-build.yml
@@ -0,0 +1,59 @@
name: Reusable Docker Build && Push Workflow

on:
workflow_call:
inputs:
package-name:
required: true
type: string
dockerfile:
required: true
type: string
env:
REGISTRY: ghcr.io

jobs:
build-and-push:
runs-on: ubuntu-latest
if: ${{ contains(github.ref, 'refs/tags/v') && contains(github.ref, format('--{0}', inputs.package-name)) || github.ref == 'refs/heads/main' || github.event_name == 'pull_request' }}
steps:
# Checking out the repo
- uses: actions/checkout@v3
# https://github.com/docker/setup-qemu-action
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
- name: Log in to registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# Generate correct tabs and labels
- name: Docker metadata
id: metadata
uses: docker/metadata-action@v4
with:
images: ${{ format('ghcr.io/astriaorg/{0}', inputs.package-name) }}
tags: |
type=ref,event=pr
type=semver,pattern={{major}}.{{minor}}.{{patch}}
type=sha
# set latest tag for `main` branch
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'main') }}
- name: Build and push
uses: docker/build-push-action@v4
with:
# this gets rid of the unknown/unknown image that is created without this setting
# https://github.com/docker/build-push-action/issues/820#issuecomment-1455687416
provenance: false
context: .
file: ${{ inputs.dockerfile }}
platforms: 'linux/amd64,linux/arm64'
push: true
tags: ${{ steps.metadata.outputs.tags }}
labels: ${{ steps.metadata.outputs.labels }}