forked from FAIRDataTeam/FAIRDataPoint
-
Notifications
You must be signed in to change notification settings - Fork 0
168 lines (143 loc) · 4.88 KB
/
build.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
name: "Test & Build"
on:
push:
pull_request:
jobs:
test:
name: Test
strategy:
matrix:
os:
- ubuntu-20.04
# - windows-2022 (MongoDB issues in CI)
- macos-12
runs-on: ${{ matrix.os }}
env:
JAVA_DISTRIBUTION: temurin
JAVA_VERSION: 21
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up MongoDB
uses: ankane/setup-mongodb@v1
with:
mongodb-version: '5.0'
- name: Check MongoDB
run: |
mongo --eval "db.version()"
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: ${{ env.JAVA_DISTRIBUTION }}
java-version: ${{ env.JAVA_VERSION }}
cache: 'maven'
- name: Compile
run: |
mvn -q -U -B compile
- name: Test
run: |
mvn -q -U -B test
- name: Package
run: |
mvn -q -U -B -ff -DskipTests package
- name: Verify
run: |
mvn -q -U -B -ff -DskipTests verify
docker:
name: Docker build
runs-on: ubuntu-latest
needs: test
env:
PUBLIC_IMAGE: fairdata/fairdatapoint
PRIVATE_IMAGE: ${{ secrets.PRIVATE_REGISTRY_URL }}/fairdatapoint
PRIVATE_REGISTRY_URL: ${{ secrets.PRIVATE_REGISTRY_URL }}
DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }}
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Check available platforms
run: echo ${{ steps.buildx.outputs.platforms }}
- name: Docker meta [test]
id: meta-test
uses: docker/metadata-action@v5
with:
images: |
${{ env.PUBLIC_IMAGE }}
tags: |
type=sha
- name: Docker build+push [test]
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile.build
platforms: linux/amd64,linux/arm64
push: false
tags: ${{ steps.meta-test.outputs.tags }}
labels: ${{ steps.meta-test.outputs.labels }}
# PRIVATE: DOCKER REGISTRY
- name: Docker login [private]
if: github.event_name == 'push' && env.PRIVATE_REGISTRY_URL != ''
uses: docker/login-action@v3
with:
registry: ${{ secrets.PRIVATE_REGISTRY_URL }}
username: ${{ secrets.PRIVATE_REGISTRY_USERNAME }}
password: ${{ secrets.PRIVATE_REGISTRY_PASSWORD }}
- name: Docker meta [private]
id: meta-private
if: github.event_name == 'push' && env.PRIVATE_REGISTRY_URL != ''
uses: docker/metadata-action@v5
with:
images: |
${{ env.PRIVATE_IMAGE }}
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
- name: Docker build+push [private]
uses: docker/build-push-action@v5
if: github.event_name == 'push' && env.PRIVATE_REGISTRY_URL != '' && steps.meta-private.outputs.tags != ''
with:
context: .
file: ./Dockerfile.build
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta-private.outputs.tags }}
labels: ${{ steps.meta-private.outputs.labels }}
# PUBLIC: DOCKER HUB
- name: Docker login [public]
if: github.event_name == 'push' && env.DOCKER_HUB_USERNAME != ''
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Docker meta [public]
id: meta-public
if: github.event_name == 'push' && env.DOCKER_HUB_USERNAME != ''
uses: docker/metadata-action@v5
with:
images: |
${{ env.PUBLIC_IMAGE }}
tags: |
type=raw,value=develop,enable=${{ github.ref == format('refs/heads/{0}', 'develop') }}
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'master') }}
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}},enable=${{ !startsWith(github.ref, 'refs/tags/v0.') }}
- name: Docker build+push [public]
uses: docker/build-push-action@v5
if: github.event_name == 'push' && env.DOCKER_HUB_USERNAME != '' && steps.meta-public.outputs.tags != ''
with:
context: .
file: ./Dockerfile.build
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta-public.outputs.tags }}
labels: ${{ steps.meta-public.outputs.labels }}