forked from spinnaker/halyard
-
Notifications
You must be signed in to change notification settings - Fork 4
80 lines (74 loc) · 2.95 KB
/
halyard-oes-branch.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: Branch Build halyard with local branch
on:
workflow_call:
workflow_dispatch:
# Inputs the workflow accepts.
inputs:
org:
# Friendly description to be shown in the UI instead of 'name'
description: 'Organisation name'
# Default value if no value is explicitly provided
default: 'opsmx'
# Input has to be provided for the workflow to run
required: true
# The data type of the input
type: string
branch:
# Friendly description to be shown in the UI instead of 'name'
description: 'Branch name'
# Default value if no value is explicitly provided
default: 'master'
# Input has to be provided for the workflow to run
required: true
# The data type of the input
type: string
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:
repository: ${{ inputs.org }}/halyard-oes
ref: refs/heads/${{ inputs.branch }}
- 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-halyard-cve
echo ::set-output name=VERSION::"1.55.1$(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: |
sed -e 's/NEXUS_URL/${{ secrets.NEXUS_URL }}/' -i settings.gradle
sed -e 's/NEXUS_USERNAME/${{ secrets.NEXUS_USERNAME }}/' -i settings.gradle
sed -e 's/NEXUS_PASSWORD/${{ secrets.NEXUS_PASSWORD }}/' -i settings.gradle
sed -e 's/NEXUS_USERNAME/${{ secrets.NEXUS_USERNAME }}/' -i build.gradle
sed -e 's/NEXUS_PASSWORD/${{ secrets.NEXUS_PASSWORD }}/' -i build.gradle
sed -e 's/NEXUS_URL/${{ secrets.NEXUS_URL }}/' -i build.gradle
./gradlew --no-daemon -PenableCrossCompilerPlugin=true halyard-web:installDist -x test
- name: dockerBuildpush
uses: docker/build-push-action@v2
with:
context: .
file: docker/ubi8/Dockerfile-fips
push: true
tags: |
"${{ env.CONTAINER_REGISTRY }}/${{ steps.build_variables.outputs.REPO }}:${{ steps.build_variables.outputs.VERSION }}"