-
Notifications
You must be signed in to change notification settings - Fork 3
56 lines (49 loc) · 1.75 KB
/
orca-gate.push.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Branch build orca testing
on:
workflow_dispatch:
inputs:
release:
description: 'Release_name to create Tag'
default: 'v4.0-custom2'
required: true
type: string
env:
GRADLE_OPTS: -Dorg.gradle.daemon=false -Xmx6g -Xms6g
CONTAINER_REGISTRY: quay.io/opsmxpublic
jobs:
build-orca:
runs-on: ubuntu-latest
if: always()
steps:
- name: Checkout OpsMx orca repo
uses: actions/checkout@v3
with:
repository: opsmx/orca-oes
ref: refs/heads/OES-1.30.1
- 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: 17
distribution: 'temurin'
- name: Prepare build variables
id: build_variables
run: |
echo ::set-output name=REPO::ubi8-orca-cve
echo ::set-output name=VERSION::"$(git rev-parse --short HEAD)-$(date --utc +'%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: |
./gradlew --no-daemon orca-web:installDist -x test
docker build --build-arg CUSTOMPLUGIN_RELEASEVERSION=v4.0-custom4 -t quay.io/opsmxpublic/ubi8-oes-orca:testplugin3 -f docker/ubi8/Dockerfile-fips .
docker push quay.io/opsmxpublic/ubi8-oes-orca:testplugin3