2020-11-27 16:18:22 +05:30
|
|
|
# This workflow will perform a test whenever there
|
|
|
|
# is some change in code done to ensure that the changes
|
|
|
|
# are not buggy and we are getting the desired output.
|
2021-04-12 18:05:25 +05:30
|
|
|
name: Build and Push
|
2021-02-20 13:37:54 -05:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
workflow_dispatch:
|
2021-04-12 18:05:25 +05:30
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * *' # every day at midnight
|
2021-02-20 13:37:54 -05:00
|
|
|
|
2020-11-27 16:18:22 +05:30
|
|
|
env:
|
2021-02-03 08:05:48 +05:30
|
|
|
PROJECT_DIR: spring-petclinic
|
|
|
|
IMAGE_NAME: spring-petclinic
|
2020-11-27 16:18:22 +05:30
|
|
|
IMAGE_REGISTRY: quay.io
|
2021-02-03 08:05:48 +05:30
|
|
|
IMAGE_TAGS: v1 ${{ github.sha }}
|
|
|
|
MVN_REPO_DIR: ~/.m2/repository
|
2020-11-27 16:18:22 +05:30
|
|
|
|
|
|
|
jobs:
|
2021-02-03 08:05:48 +05:30
|
|
|
build-and-push:
|
|
|
|
name: Build and push image to Quay.io
|
2021-01-07 18:49:38 -05:00
|
|
|
runs-on: ubuntu-20.04
|
2020-11-27 16:18:22 +05:30
|
|
|
steps:
|
2021-02-03 08:05:48 +05:30
|
|
|
|
2020-11-27 16:18:22 +05:30
|
|
|
# Checkout push-to-registry action github repository
|
|
|
|
- name: Checkout Push to Registry action
|
|
|
|
uses: actions/checkout@v2
|
2021-02-03 08:05:48 +05:30
|
|
|
with:
|
|
|
|
path: "push-to-registry"
|
|
|
|
|
|
|
|
# Checkout spring-petclinic github repository
|
|
|
|
- name: Checkout spring-petclinic project
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
repository: "spring-projects/spring-petclinic"
|
|
|
|
path: ${{ env.PROJECT_DIR }}
|
2021-02-20 13:37:54 -05:00
|
|
|
|
2021-02-03 08:05:48 +05:30
|
|
|
# If none of these files has changed, we assume that the contents of
|
|
|
|
# .m2/repository can be fetched from the cache.
|
|
|
|
- name: Hash Maven files
|
|
|
|
working-directory: ${{ env.PROJECT_DIR }}
|
|
|
|
run: |
|
|
|
|
echo "MVN_HASH=${{ hashFiles('**/pom.xml', '.mvn/**/*', 'mvnw*') }}" >> $GITHUB_ENV
|
2021-02-20 13:37:54 -05:00
|
|
|
|
2021-02-03 08:05:48 +05:30
|
|
|
# Download the m2 repository from the cache to speed up the build.
|
|
|
|
- name: Check for Maven cache
|
|
|
|
id: check-mvn-cache
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ${{ env.MVN_REPO_DIR }}
|
|
|
|
key: ${{ env.MVN_HASH }}
|
2020-11-27 16:18:22 +05:30
|
|
|
|
2021-02-03 08:05:48 +05:30
|
|
|
# Setup java.
|
|
|
|
- name: Setup Java
|
|
|
|
uses: actions/setup-java@v1
|
|
|
|
with:
|
|
|
|
java-version: 11
|
|
|
|
|
|
|
|
# Run maven to build the project
|
|
|
|
- name: Maven
|
|
|
|
working-directory: ${{ env.PROJECT_DIR }}
|
2021-01-19 20:54:49 +05:30
|
|
|
run: |
|
2021-02-20 13:37:54 -05:00
|
|
|
mvn package -ntp -B
|
2020-11-27 16:18:22 +05:30
|
|
|
|
2021-02-03 08:05:48 +05:30
|
|
|
# If there was no cache hit above, store the output into the cache now.
|
|
|
|
- name: Save Maven repo into cache
|
|
|
|
if: ${{ steps.check-mvn-cache.outputs.cache-hit }} != 'true'
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ${{ env.MVN_REPO_DIR }}
|
|
|
|
key: ${{ env.MVN_HASH }}
|
2021-02-20 13:37:54 -05:00
|
|
|
|
2021-02-03 08:05:48 +05:30
|
|
|
# Build image using Buildah action
|
|
|
|
- name: Build Image
|
|
|
|
id: build_image
|
2021-02-09 00:00:15 +05:30
|
|
|
uses: redhat-actions/buildah-build@v2
|
2021-02-03 08:05:48 +05:30
|
|
|
with:
|
|
|
|
image: ${{ env.IMAGE_NAME }}
|
|
|
|
tags: ${{ env.IMAGE_TAGS }}
|
|
|
|
base-image: 'registry.access.redhat.com/openjdk/openjdk-11-rhel7'
|
|
|
|
# To avoid hardcoding a particular version of the binary.
|
|
|
|
content: |
|
|
|
|
./spring-petclinic/target/spring-petclinic-*.jar
|
|
|
|
entrypoint: |
|
|
|
|
java
|
|
|
|
-jar
|
|
|
|
spring-petclinic-*.jar
|
|
|
|
port: 8080
|
|
|
|
oci: 'true'
|
2021-02-20 13:37:54 -05:00
|
|
|
|
2021-02-03 08:05:48 +05:30
|
|
|
# Push the image to Quay.io (Image Registry)
|
2020-11-27 16:18:22 +05:30
|
|
|
- name: Push To Quay
|
2021-02-03 08:05:48 +05:30
|
|
|
uses: ./push-to-registry/
|
2021-01-07 18:49:38 -05:00
|
|
|
id: push
|
2020-11-27 16:18:22 +05:30
|
|
|
with:
|
2021-02-03 08:05:48 +05:30
|
|
|
image: ${{ steps.build_image.outputs.image }}
|
|
|
|
tags: ${{ steps.build_image.outputs.tags }}
|
2020-11-27 16:18:22 +05:30
|
|
|
registry: ${{ env.IMAGE_REGISTRY }}/${{ secrets.REGISTRY_USER }}
|
|
|
|
username: ${{ secrets.REGISTRY_USER }}
|
|
|
|
password: ${{ secrets.REGISTRY_PASSWORD }}
|
2021-02-08 20:07:42 +05:30
|
|
|
extra-args: |
|
|
|
|
--disable-content-trust
|
2021-02-20 13:37:54 -05:00
|
|
|
|
2021-01-07 18:49:38 -05:00
|
|
|
- name: Echo outputs
|
|
|
|
run: |
|
2021-02-21 16:44:45 -05:00
|
|
|
echo "${{ toJSON(steps.push.outputs) }}"
|