This repository has been archived by the owner on Jun 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
99 lines (96 loc) · 4.1 KB
/
merge.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# SPDX-License-Identifier: Apache-2.0
# Copyright Contributors to the ODPi Egeria project.
name: "Merge"
on:
push:
branches: [main, release-*, feature-*]
# Also allow for manual invocation for testing
workflow_dispatch:
jobs:
build:
if: startsWith(github.repository,'odpi/')
runs-on: ubuntu-latest
name: "Merge"
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
- uses: gradle/wrapper-validation-action@v1
# Only for a merge into this repo - not a fork, and just for the main branch
- name: Build (Publish snapshots to maven central)
if: ${{ github.ref == 'refs/heads/main'}}
# TODO: Need to extend build to make use of snapshot repo for publishing
uses: gradle/gradle-build-action@v2
with:
arguments: |
publish
--scan
env:
OSSRH_GPG_KEYID: ${{ secrets.OSSRH_GPG_KEYID }}
OSSRH_GPG_PASSPHRASE: ${{ secrets.OSSRH_GPG_PASSPHRASE }}
OSSRH_GPG_PRIVATE_KEY: ${{ secrets.OSSRH_GPG_PRIVATE_KEY }}
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
# In other cases just build but don't publish
- name: Build (no snapshots)
if: ${{ github.ref != 'refs/heads/main'}}
uses: gradle/gradle-build-action@v2
with:
arguments: |
build
--scan
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to container registry (Quay.io)
uses: docker/login-action@v2
with:
registry: quay.io
username: ${{ secrets.QUAY_IO_USERNAME }}
password: ${{ secrets.QUAY_IO_ACCESS_TOKEN }}
- name: Login to container registry (Docker Hub)
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
# QEMU is needed for ARM64 build for egeria-configure
# egeria-configure needs to install utilities
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set Release version env variables
run: |
echo "CONNECTOR_VERSION=$(./gradlew properties --no-daemon --console=plain -q | grep '^version:' | awk '{printf $2}')" >> $GITHUB_ENV
echo "EGERIA_BASE_IMAGE=quay.io/odpi/egeria" >> $GITHUB_ENV
echo "EGERIA_VERSION=$(./gradlew :egeria-connector-apache-atlas-adapter:dependencies | grep org.odpi.egeria:open-connector-framework | awk -F':' '{if ($3) print $3}' | awk -F' ' '{print $1}' | uniq| head -1)" >> $GITHUB_ENV
- name: Build and push to quay.io and docker.io (tag latest only for main!)
if: ${{ github.ref == 'refs/heads/main'}}
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: odpi/egeria-connector-atlas:${{ env.CONNECTOR_VERSION }}, odpi/egeria:latest, quay.io/odpi/egeria-connector-atlas:${{ env.CONNECTOR_VERSION }}, quay.io/odpi/egeria-connector-atlas:latest
platforms: linux/amd64,linux/arm64
build-args: |
EGERIA_BASE_IMAGE=${{ env.EGERIA_BASE_IMAGE }}
CONNECTOR_VERSION=${{ env.CONNECTOR_VERSION }}
EGERIA_VERSION=${{ env.EGERIA_VERSION }}
- name: Build and push( to quay.io and docker.io (no tag latest)
if: ${{ github.ref != 'refs/heads/main'}}
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: odpi/egeria-connector-atlas:${{ env.CONNECTOR_VERSION }}, quay.io/odpi/egeria-connector-atlas:${{ env.CONNECTOR_VERSION }}
platforms: linux/amd64,linux/arm64
build-args: |
EGERIA_BASE_IMAGE=${{ env.EGERIA_BASE_IMAGE }}
CONNECTOR_VERSION=${{ env.CONNECTOR_VERSION }}
EGERIA_VERSION=${{ env.EGERIA_VERSION }}
# --
- name: Upload Connector
uses: actions/upload-artifact@v3
with:
name: Hadoop Connectors
path: '**/build/libs/*.jar'