2021-11-23 09:34:51 +01:00
|
|
|
|
name: GitHub Codespaces image build
|
|
|
|
|
|
|
|
|
|
# Run only on master branch. We could also build on branch but this seems like
|
|
|
|
|
# an optimization that can be done as and when desired. The main use case we're
|
|
|
|
|
# handling is creating and working off a branch from master, so it doesn't seem
|
|
|
|
|
# like an immediate requirement to have branches as well.
|
|
|
|
|
#
|
|
|
|
|
# NOTE: the job is setup to also push branch images as well, and using branch
|
|
|
|
|
# and master as caching, so if we want to add the optimisation for branches we
|
|
|
|
|
# can just remove the master branch restriction.
|
|
|
|
|
on:
|
|
|
|
|
push:
|
|
|
|
|
branches:
|
|
|
|
|
- master
|
|
|
|
|
pull_request:
|
|
|
|
|
types:
|
|
|
|
|
- opened
|
|
|
|
|
- labeled
|
|
|
|
|
- synchronize
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
build:
|
|
|
|
|
name: Build Codespaces image
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
|
|
# Build on master and PRs with the label 'codespaces-build' only
|
|
|
|
|
if: ${{ github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'codespaces-build') }}
|
|
|
|
|
|
|
|
|
|
steps:
|
2022-10-26 20:40:00 +02:00
|
|
|
|
- uses: actions/checkout@v3
|
2021-11-23 09:34:51 +01:00
|
|
|
|
with:
|
|
|
|
|
fetch-depth: 1
|
|
|
|
|
|
2023-05-23 14:12:16 +02:00
|
|
|
|
- name: Lowercase GITHUB_REPOSITORY
|
|
|
|
|
id: lowercase
|
|
|
|
|
run: |
|
|
|
|
|
echo "repository=${GITHUB_REPOSITORY,,}" >> "$GITHUB_OUTPUT"
|
|
|
|
|
|
2021-11-23 09:34:51 +01:00
|
|
|
|
# As ghcr.io complains if the image has upper case letters, we use
|
|
|
|
|
# this action to ensure we get a lower case version. See
|
|
|
|
|
# https://github.com/docker/build-push-action/issues/237#issuecomment-848673650
|
|
|
|
|
# for more details
|
|
|
|
|
- name: Docker image metadata
|
|
|
|
|
id: meta
|
2024-01-15 12:56:54 +01:00
|
|
|
|
uses: docker/metadata-action@v5
|
2021-11-23 09:34:51 +01:00
|
|
|
|
with:
|
2023-05-23 14:12:16 +02:00
|
|
|
|
images: ghcr.io/${{ steps.lowercase.outputs.repository }}/codespaces
|
2021-11-23 09:34:51 +01:00
|
|
|
|
tags: |
|
|
|
|
|
type=ref,event=branch
|
|
|
|
|
type=raw,value=master
|
|
|
|
|
|
|
|
|
|
# We also want to use cache-from when building, but we want to also
|
|
|
|
|
# include the master tag so we get the master branch image as well.
|
|
|
|
|
# This creates a scope similar to the github cache action scoping
|
|
|
|
|
- name: Docker cache-from/cache-to metadata
|
|
|
|
|
id: meta-for-cache
|
2024-01-15 12:56:54 +01:00
|
|
|
|
uses: docker/metadata-action@v5
|
2021-11-23 09:34:51 +01:00
|
|
|
|
with:
|
2023-05-23 14:12:16 +02:00
|
|
|
|
images: ghcr.io/${{ steps.lowercase.outputs.repository }}/codespaces
|
2021-11-23 09:34:51 +01:00
|
|
|
|
tags: |
|
|
|
|
|
type=raw,value=master
|
|
|
|
|
|
|
|
|
|
# Install QEMU so we can target x86_64 (github codespaces)
|
|
|
|
|
- name: Set up QEMU
|
2024-03-11 17:07:11 +01:00
|
|
|
|
uses: docker/setup-qemu-action@v3
|
2021-11-23 09:34:51 +01:00
|
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
2022-10-26 20:40:00 +02:00
|
|
|
|
uses: docker/setup-buildx-action@v2
|
2021-11-23 09:34:51 +01:00
|
|
|
|
|
|
|
|
|
- name: Login to GitHub Container Registry
|
2024-01-23 14:13:59 +01:00
|
|
|
|
uses: docker/login-action@v3
|
2021-11-23 09:34:51 +01:00
|
|
|
|
with:
|
|
|
|
|
registry: ghcr.io
|
|
|
|
|
username: ${{ github.actor }}
|
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
|
|
- name: Build and push
|
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
|
with:
|
|
|
|
|
context: .
|
|
|
|
|
file: .devcontainer/Dockerfile
|
|
|
|
|
push: true
|
|
|
|
|
platforms: x86_64
|
|
|
|
|
# Cache from this branch, or master
|
|
|
|
|
cache-from: ${{ steps.meta-for-cache.outputs.tags }}
|
|
|
|
|
# NOTE: we use inline as suggested here:
|
|
|
|
|
# https://github.com/docker/build-push-action/blob/master/docs/advanced/cache.md#inline-cache
|
|
|
|
|
# It notes that it doesn't support mode=max, but we're not
|
|
|
|
|
# removing any layers, soooo, maybe it's fine.
|
|
|
|
|
cache-to: type=inline
|
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|