Build and push images #81
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: Build and push images | |
on: | |
workflow_dispatch: | |
inputs: | |
push: | |
type: boolean | |
description: push the devcontainer images? | |
required: true | |
default: false | |
pull_request: | |
branches: | |
- main | |
paths: | |
- build/*.json | |
- Makefile | |
- src/**.devcontainer.json | |
- src/**Dockerfile | |
- src/**/assets/** | |
- "!**.md" | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
detect-changes: | |
if: ${{ github.event_name == 'pull_request' }} | |
runs-on: ubuntu-latest | |
outputs: | |
src: ${{ steps.filter.outputs.changes }} | |
steps: | |
- uses: dorny/paths-filter@v3 | |
id: filter | |
with: | |
filters: | | |
r-ver: ./**/r-ver/** | |
rstudio: ./**/rstudio/** | |
generate-matrix: | |
if: ${{ github.event_name != 'pull_request' }} | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- uses: actions/checkout@v4 | |
- id: set-json | |
run: | | |
jsonfile="build/matrix.json" | |
echo "json=${jsonfile}" >>"$GITHUB_OUTPUT" | |
echo ${jsonfile} | |
- id: set-matrix | |
run: | | |
jsoncontent=$(jq -r 'tostring' ${{ steps.set-json.outputs.json }}) | |
echo "matrix=${jsoncontent}" >>"$GITHUB_OUTPUT" | |
echo "${jsoncontent}" | |
generate-matrix-pr: | |
needs: | |
- detect-changes | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- uses: actions/checkout@v4 | |
- id: set-json | |
run: | | |
jsonfile="build/matrix.json" | |
echo ::set-output name=json::${jsonfile} | |
echo ${jsonfile} | |
- id: set-matrix | |
run: | | |
regex=$(echo '${{ needs.detect-changes.outputs.src }}' | jq '.|join("|")' -r) | |
jsoncontent=$(jq -r '{ include: [ .include[] | select(.src_name | test("'${regex}'")) ] } | tostring' ${{ steps.set-json.outputs.json }}) | |
echo "matrix=${jsoncontent}" >>"${GITHUB_OUTPUT}" | |
echo "${jsoncontent}" | |
build-pr: | |
needs: | |
- generate-matrix-pr | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: ${{ fromJson(needs.generate-matrix-pr.outputs.matrix) }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up devcontainer cli | |
run: npm install -g @devcontainers/cli | |
- name: Test build | |
if: ${{ github.event_name == 'pull_request' }} | |
run: | | |
GIT_REPOSITORY="${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}" \ | |
PLATFORM=linux/amd64 \ | |
SRC_NAME=${{ matrix.src_name }} \ | |
IMAGE_NAME=${{ matrix.image_name }} \ | |
VARIANT=${{ matrix.variant }} \ | |
make test | |
build-push: | |
needs: | |
- generate-matrix | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: ${{ fromJson(needs.generate-matrix.outputs.matrix) }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Set up devcontainer cli | |
run: npm install -g @devcontainers/cli | |
- name: Build and push Docker images | |
run: | | |
GIT_REPOSITORY="${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}" \ | |
SRC_NAME=${{ matrix.src_name }} \ | |
IMAGE_NAME=${{ matrix.image_name }} \ | |
VARIANT=${{ matrix.variant }} \ | |
DEVCON_BUILD_OPTION=--push\ ${{ inputs.push }} \ | |
make devcontainer |