Skip to content

Build & Publish Parsec Server Docker Image #148

Build & Publish Parsec Server Docker Image

Build & Publish Parsec Server Docker Image #148

Workflow file for this run

name: Build & Publish Parsec Server Docker Image
# cspell:words buildx
on:
workflow_dispatch:
pull_request:
paths:
- server/packaging/server/**
- .github/workflows/docker-server.yml
# Only run on pushed tag because we don't want this workflow to run everytime we push something to the main branch.
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+*
- nightly
permissions:
contents: write
packages: write
# We set `concurrency` to prevent having this workflow being run on code that is not up-to-date on a PR (a user make multiple push in a quick manner).
# But outside of a PR, we want to have only 1 workflow to be run at the same time on a given git ref
concurrency:
group: docker-server-${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
docker-server:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # pin v4.1.7
timeout-minutes: 3
# Set up BuildKit Docker container builder to be able to build
# multi-platform images and export cache
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1
- name: Log in to the Github Container registry
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Get current version
id: version
run: python misc/releaser.py version --uniq-dev | tee -a $GITHUB_OUTPUT
timeout-minutes: 1
- name: Generate build metadata
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
id: metadata
with:
images:
ghcr.io/scille/parsec-cloud/parsec-server
tags: |
type=semver,pattern={{ version }}
type=semver,pattern={{ major }}.{{ minor }}
type=raw,value=${{ steps.version.outputs.docker }}
type=schedule,enable=${{ github.event_name == 'push' && github.ref_type == 'tag' && github.ref == 'refs/tags/nightly' && 'true' || 'false' }},pattern=nightly
flavor: |
latest=${{ github.event_name == 'push' && github.ref_type == 'tag' }}
- name: Build and export to Docker
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
id: build
with:
context: .
file: server/packaging/server/server.dockerfile
load: true
tags: ${{ steps.metadata.outputs.tags }}
labels: ${{ steps.metadata.outputs.labels }}
push: false
timeout-minutes: 20
- name: Start docker test container
id: test-container
run: |
(
echo -n "id=";
docker run --detach --publish 6777:6777 --rm --name=parsec-server ${{ steps.build.outputs.imageid }} -- run --port=6777 --dev --host=0.0.0.0
) | tee $GITHUB_OUTPUT
timeout-minutes: 1
- name: Test docker image
run: python .github/scripts/test-server.py
timeout-minutes: 1
- name: Stop docker test container
run: docker container stop ${{ steps.test-container.outputs.id }}
timeout-minutes: 1
- name: Image to be published
run: echo "${{ steps.metadata.outputs.tags }}"
- name: Build and publish
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
id: publish
with:
context: .
file: server/packaging/server/server.dockerfile
tags: ${{ steps.metadata.outputs.tags }}
labels: ${{ steps.metadata.outputs.labels }}
push: ${{ (github.event_name == 'push' && github.ref_type == 'tag') || github.event_name == 'workflow_dispatch' }}