Docker #124
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- 'v*' | |
release: | |
types: [published] | |
env: | |
# Workaround for https://github.com/rust-lang/cargo/issues/8719#issuecomment-1516492970 | |
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse | |
jobs: | |
# Build a docker image unless this was triggered by a release. | |
build-image: | |
if: github.event_name != 'release' | |
runs-on: pathfinder-large-ubuntu | |
steps: | |
- name: Determine Docker image metadata | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: eqlabs/pathfinder | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Generate version | |
id: generate_version | |
run: | | |
echo -n "pathfinder_version=" >> $GITHUB_OUTPUT | |
git describe --tags --dirty >> $GITHUB_OUTPUT | |
- name: Set up QEMU | |
id: qemu | |
uses: docker/setup-qemu-action@v2 | |
with: | |
image: tonistiigi/binfmt:latest | |
platforms: all | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v2 | |
with: | |
config-inline: | | |
[worker.oci] | |
max-parallelism = 4 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
# Required for git security reasons. See https://github.com/rustyhorde/vergen/pull/126#issuecomment-1201088162 | |
- name: Vergen git safe directory | |
run: git config --global --add safe.directory /workspace | |
- name: Build | |
id: docker_build | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
platforms: | | |
linux/amd64 | |
linux/arm64 | |
file: ./EmptyDockerfile | |
build-args: | | |
PATHFINDER_FORCE_VERSION=${{ steps.generate_version.outputs.pathfinder_version }} | |
builder: ${{ steps.buildx.outputs.name }} | |
push: true | |
labels: ${{ steps.meta.outputs.labels }} | |
tags: eqlabs/pathfinder:mirko-testsnapshot-${{ github.sha }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
# Add the release labels to the associated docker image. | |
tag-release: | |
needs: build-image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
- name: Pull image | |
run: docker pull eqlabs/pathfinder:mirko-testsnapshot-${{ github.sha }} | |
- name: Tag image | |
run: | | |
docker tag eqlabs/pathfinder:mirko-testsnapshot-${{ github.sha }} eqlabs/pathfinder:mirko | |
# docker tag eqlabs/pathfinder:mirko-testsnapshot-${{ github.sha }} eqlabs/pathfinder:${{ github.event.release.tag_name }} | |
- name: Push image tags | |
run: docker push --all-tags eqlabs/pathfinder |