Update deck-oes.yml #22
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: Branch Build deck | |
on: | |
workflow_call: | |
push: | |
branches: | |
- OES-1.33.x | |
env: | |
GRADLE_OPTS: -Dorg.gradle.daemon=false -Xmx6g -Xms6g | |
CONTAINER_REGISTRY: quay.io/opsmxpublic | |
jobs: | |
branch-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- uses: actions/setup-java@v2 | |
with: | |
java-version: 11 | |
distribution: 'zulu' | |
- name: Prepare build variables | |
id: build_variables | |
run: | | |
echo ::set-output name=REPO::ubi8-deck-cve | |
#echo ::set-output name=VERSION::"1.33.x$(date --utc +'%Y%m%d')" | |
echo ::set-output name=VERSION::"1.33.2" | |
echo "::set-output name=GITHASH::$(git rev-parse --short HEAD)" | |
echo "::set-output name=BUILDDATE::$(date -u +"%Y%m%d%H%M")" | |
- name: Login to Quay | |
uses: docker/login-action@v1 | |
# use service account flow defined at: https://github.com/docker/login-action#service-account-based-authentication-1 | |
with: | |
registry: quay.io | |
username: ${{ secrets.QUAY_USERNAME }} | |
password: ${{ secrets.QUAY_KEY }} | |
- name: Build | |
env: | |
ORG_GRADLE_PROJECT_version: ${{ steps.build_variables.outputs.VERSION }} | |
run: | | |
cp docker/ubi8/setupapache2.sh docker/setup-apache2.sh | |
cp docker/ubi8/runapache2.sh docker/run-apache2.sh | |
# To remove Special characters | |
sed -i 's/\r//' docker/setup-apache2.sh | |
sed -i 's/\r//' docker/run-apache2.sh | |
./gradlew build --no-daemon -PskipTests | |
#./gradlew --no-daemon -PenableCrossCompilerPlugin=true | |
ls -ltra | |
- name: dockerBuildpush | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
file: docker/ubi8/Dockerfile | |
push: true | |
tags: | | |
"${{ env.CONTAINER_REGISTRY }}/${{ steps.build_variables.outputs.REPO }}:${{ steps.build_variables.outputs.VERSION }}-${{ steps.build_variables.outputs.GITHASH }}-${{ steps.build_variables.outputs.BUILDDATE }}" | |