Skip to content

Java 8 :dev6

Java 8 :dev6 #418

Workflow file for this run

name: Java 8 :release
on:
push:
pull_request:
schedule:
- cron: "11 4 * * *"
env:
TEST_TAG: ${{ secrets.DOCKER_USERNAME }}/existdb:exist-ci
EXIST_VER: 6.2.0
jobs:
build:
name: Build and Test Images
runs-on: ubuntu-latest
# NOTE (DP): Test on PRs and pushes
if: github.ref == 'refs/heads/main' || github.base_ref == 'main'
steps:
# SETUP
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: '8'
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: linux/amd64,linux/arm64
# platforms: all
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Make buildkit default
uses: docker/setup-buildx-action@v2
id: buildx
with:
install: true
- name: Install bats
# run: sudo apt-get install bats libsaxonb-java
run: sudo apt-get install bats
- name: Check local images
run: docker image ls
# TODO(DP) needs adjusting for multi-stage see #5
# - name: Modify logging config
# run: saxonb-xslt -s:dump/exist-distribution-${{ env.EXIST_VER }}/etc/log4j2.xml -xsl:log4j2-docker.xslt -o:log4j2.xml
# BUILD
- name: Build local images for testing on CI
uses: docker/build-push-action@v4
with:
context: .
build-args: BRANCH=master
file: ./Dockerfile_j8
load: true
tags: ${{ env.TEST_TAG }}
- name: Build debug images for testing on CI
uses: docker/build-push-action@v4
with:
context: .
build-args: |
DISTRO_TAG=debug
BRANCH=master
file: ./Dockerfile_j8
load: true
tags: ${{ env.TEST_TAG }}-debug
- name: Build nonroot images for testing on CI
uses: docker/build-push-action@v4
with:
context: .
build-args: |
BRANCH=master
DISTRO_TAG=nonroot
USR=nonroot:nonroot
file: ./Dockerfile_j8
load: true
tags: ${{ env.TEST_TAG }}-nonroot
# TEST
- name: Start exist-ci container
run: |
docker run -dit -p 8080:8080 --name exist-ci --rm ${{ env.TEST_TAG }}
docker run -dit -p 8181:8080 -v $pwd/exist/autodeploy:/exist/autodeploy --name nonroot --rm ${{ env.TEST_TAG }}-nonroot
sleep 35s
- name: Run tests
run: bats --tap test/bats/*.bats
# DP: This is dynamically setting Version number of latest
- name: Get SemVer string from test image
run: |
echo "EXIST_VER=$(docker exec exist-ci java org.exist.start.Main client --no-gui --xpath 'system:get-version()' | grep -i 'eXist version' | cut -d ' ' -f 3)" >> $GITHUB_ENV
- name: Test GHA output
run: echo $EXIST_VER
# PUSH
# Release
- name: Push :release to Dockerhub
if: github.ref == 'refs/heads/main'
uses: docker/build-push-action@v4
with:
context: ./
platforms: linux/amd64,linux/arm64
file: ./Dockerfile_j8
build-args: BRANCH=master
builder: ${{ steps.buildx.outputs.name }}
push: true
tags: |
${{ secrets.DOCKER_USERNAME }}/existdb:${{ env.EXIST_VER }}-j8
${{ secrets.DOCKER_USERNAME }}/existdb:release-j8
cache-from: type=registry,ref=${{ secrets.DOCKER_USERNAME }}/existdb:buildcache
cache-to: type=registry,ref=${{ secrets.DOCKER_USERNAME }}/existdb:buildcache,mode=max
- name: Push :debug (release) to Dockerhub
if: github.ref == 'refs/heads/main'
uses: docker/build-push-action@v4
with:
context: ./
platforms: linux/amd64,linux/arm64
file: ./Dockerfile_j8
build-args: |
DISTRO_TAG=debug
BRANCH=master
builder: ${{ steps.buildx.outputs.name }}
push: true
tags: |
${{ secrets.DOCKER_USERNAME }}/existdb:${{ env.EXIST_VER }}-debug-j8
${{ secrets.DOCKER_USERNAME }}/existdb:release-debug-j8
cache-from: type=registry,ref=${{ secrets.DOCKER_USERNAME }}/existdb:buildcache
cache-to: type=registry,ref=${{ secrets.DOCKER_USERNAME }}/existdb:buildcache,mode=max
- name: Push :nonroot (release) to Dockerhub
if: github.ref == 'refs/heads/main'
uses: docker/build-push-action@v4
with:
context: ./
platforms: linux/amd64,linux/arm64
file: ./Dockerfile_j8
build-args: |
DISTRO_TAG=nonroot
USR=nonroot:nonroot
BRANCH=master
builder: ${{ steps.buildx.outputs.name }}
push: true
tags: |
${{ secrets.DOCKER_USERNAME }}/existdb:${{ env.EXIST_VER }}-nonroot-j8
${{ secrets.DOCKER_USERNAME }}/existdb:release-nonroot-j8
cache-from: type=registry,ref=${{ secrets.DOCKER_USERNAME }}/existdb:buildcache
cache-to: type=registry,ref=${{ secrets.DOCKER_USERNAME }}/existdb:buildcache,mode=max