forked from spinnaker/deck
-
Notifications
You must be signed in to change notification settings - Fork 5
63 lines (56 loc) · 2.02 KB
/
deck-oes.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
name: Branch Build deck
on:
workflow_call:
push:
branches:
- OES-1.30.1
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.30.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: |
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 }}"