feat: upgrade jenkinsfile-runner to Java 17 and Jenkins version 2.462.3 #232
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: Continuous Delivery | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
IMAGE_NAME: ${{ github.repository }} | |
REGISTRY: ghcr.io | |
jobs: | |
build-maven: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Build with Maven | |
working-directory: . | |
run: mvn -B package -DargLine="--add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.invoke=ALL-UNNAMED" | |
build-docker: | |
runs-on: ubuntu-latest | |
env: | |
IMAGE_NAME: ${{ github.repository }} | |
REGISTRY: ghcr.io | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- alias: jre-17 | |
dockerfile: packaging/docker/unix/eclipse-temurin-17-jre/Dockerfile | |
tags: test | |
- alias: jre-17-alpine | |
dockerfile: packaging/docker/unix/eclipse-temurin-17-jre-alpine/Dockerfile | |
tags: test-alpine | |
name: "Build Docker image: ${{ matrix.alias }}" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/[email protected] | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
- name: Build Docker image | |
uses: docker/[email protected] | |
with: | |
push: false | |
file: ${{ matrix.dockerfile }} | |
tags: ${{ matrix.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
deploy: | |
if: ${{ github.ref == 'refs/heads/main' }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- alias: jre-17 | |
dockerfile: packaging/docker/unix/eclipse-temurin-17-jre/Dockerfile | |
tag-prefix: eclipse-temurin-17-jre- | |
tag-latest: true | |
extra-tags: ", ghcr.io/${{ github.repository }}:jre-17" | |
- alias: jre-17-alpine | |
dockerfile: packaging/docker/unix/eclipse-temurin-17-jre-alpine/Dockerfile | |
tag-prefix: eclipse-temurin-17-jre-alpine- | |
tag-latest: false | |
extra-tags: ", ghcr.io/${{ github.repository }}:alpine, ghcr.io/${{ github.repository }}:jre-17-alpine" | |
needs: | |
- build-maven | |
- build-docker | |
permissions: | |
contents: read | |
packages: write | |
name: "Deploy Docker Image: ${{ matrix.alias }}" | |
#TODO: There is slight double build overhead, but we prevent permissions from being exposed too widely | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Log in to the Container registry | |
uses: docker/[email protected] | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/[email protected] | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
flavor: | | |
latest=${{ matrix.tag-latest }} | |
prefix=${{ matrix.tag-prefix }} | |
suffix= | |
- name: Build and Deploy Docker image | |
uses: docker/[email protected] | |
with: | |
context: . | |
file: ${{ matrix.dockerfile }} | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} ${{ matrix.extra-tags }} | |
labels: ${{ steps.meta.outputs.labels }} |