-
Notifications
You must be signed in to change notification settings - Fork 2
219 lines (207 loc) · 7.96 KB
/
build-nightly.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
name: Nightly Build
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # Runs every night at midnight UTC
jobs:
set-release-version:
if: github.repository_owner == 'Informatievlaanderen'
name: Decide next version
runs-on: ubuntu-latest
outputs:
version: ${{ steps.set-version.outputs.version }}
steps:
- name: Set Release Version
id: set-version
run: |
echo $(date +%Y).$(date +%m).$(date +%d) > semver
echo $(cat semver)
echo ::set-output name=version::$(cat semver)
echo RELEASE_VERSION=$(cat semver) >> $GITHUB_ENV
shell: bash
build-acm-api:
name: Build ACM Api
uses: ./.github/workflows/build-image.yml
if: github.repository_owner == 'Informatievlaanderen'
needs: [ set-release-version ]
with:
image-file: ar-acm-api-image.tar
image-name: verenigingsregister-acmapi
test-project: AssociationRegistry.Test.Acm.Api
build-project: AssociationRegistry.Acm.Api/
semver: ${{ needs.set-release-version.outputs.version }}
run-docker-acm: true
run-docker-wiremock: false
run-docker-db: true
pre-gen-marten: true
run-docker-elasticsearch: false
run-docker-localstack: false
run-docker-otelcollector: false
secrets: inherit
build-public-api:
name: Build Public Api
uses: ./.github/workflows/build-image.yml
if: github.repository_owner == 'Informatievlaanderen'
needs: [ set-release-version ]
with:
image-file: ar-public-api-image.tar
image-name: verenigingsregister-publicapi
test-project: AssociationRegistry.Test.Public.Api
build-project: AssociationRegistry.Public.Api/
semver: ${{ needs.set-release-version.outputs.version }}
run-docker-acm: false
run-docker-wiremock: false
run-docker-db: true
pre-gen-marten: false
run-docker-elasticsearch: true
run-docker-localstack: true
run-docker-otelcollector: true
secrets: inherit
build-public-projections:
name: Build Public Projections
uses: ./.github/workflows/build-image.yml
if: github.repository_owner == 'Informatievlaanderen'
needs: [ set-release-version ]
with:
image-file: ar-public-projections-image.tar
image-name: verenigingsregister-publicprojections
build-project: AssociationRegistry.Public.ProjectionHost/
semver: ${{ needs.set-release-version.outputs.version }}
run-docker-acm: false
run-docker-wiremock: false
run-docker-db: true
pre-gen-marten: true
run-docker-elasticsearch: true
run-docker-localstack: false
run-docker-otelcollector: true
secrets: inherit
build-admin-api:
name: Build Admin Api
uses: ./.github/workflows/build-image.yml
if: github.repository_owner == 'Informatievlaanderen'
needs: [ set-release-version ]
with:
image-file: ar-admin-api-image.tar
image-name: verenigingsregister-adminapi
test-project: AssociationRegistry.Test.Admin.Api
build-project: AssociationRegistry.Admin.Api/
semver: ${{ needs.set-release-version.outputs.version }}
run-docker-acm: true
run-docker-wiremock: true
run-docker-db: true
run-docker-elasticsearch: true
run-docker-localstack: true
run-docker-otelcollector: true
pre-gen-marten: true
secrets: inherit
build-admin-projections:
name: Build Admin Projections
uses: ./.github/workflows/build-image.yml
if: github.repository_owner == 'Informatievlaanderen'
needs: [ set-release-version ]
with:
image-file: ar-admin-projections-image.tar
image-name: verenigingsregister-adminprojections
build-project: AssociationRegistry.Admin.ProjectionHost/
semver: ${{ needs.set-release-version.outputs.version }}
run-docker-acm: true
run-docker-wiremock: true
run-docker-db: true
run-docker-elasticsearch: true
run-docker-localstack: true
run-docker-otelcollector: true
pre-gen-marten: true
secrets: inherit
build-admin-address-sync:
name: Build Admin Address Sync Scheduled Task
uses: ./.github/workflows/build-image.yml
if: github.repository_owner == 'Informatievlaanderen'
needs: [ set-release-version ]
with:
image-file: ar-admin-address-sync-image.tar
image-name: verenigingsregister-admin-address-sync
test-project: AssociationRegistry.Test.Admin.AddressSync
build-project: AssociationRegistry.Admin.AddressSync/
semver: ${{ needs.set-release-version.outputs.version }}
run-docker-acm: false
run-docker-wiremock: false
run-docker-db: true
run-docker-elasticsearch: false
run-docker-localstack: false
run-docker-otelcollector: true
pre-gen-marten: true
secrets: inherit
build-powerbi-exporthost:
name: Build PowerBI Export Scheduled Task
uses: ./.github/workflows/build-image.yml
if: github.repository_owner == 'Informatievlaanderen'
needs: [ set-release-version ]
with:
image-file: ar-powerbiexport-image.tar
image-name: verenigingsregister-powerbiexport
test-project: AssociationRegistry.Test.PowerBi.ExportHost
build-project: AssociationRegistry.PowerBi.ExportHost/
semver: ${{ needs.set-release-version.outputs.version }}
run-docker-acm: false
run-docker-wiremock: false
run-docker-db: true
run-docker-elasticsearch: false
run-docker-localstack: false
run-docker-otelcollector: true
pre-gen-marten: false
secrets: inherit
notify-success:
if: ${{ success() }}
name: Notify Slack of Success
runs-on: ubuntu-latest
needs:
- build-acm-api
- build-public-api
- build-public-projections
- build-admin-api
- build-admin-projections
steps:
- name: Post to Slack
id: slack
uses: slackapi/slack-github-action@v1.21.0
with:
channel-id: ${{ secrets.SLACK_CHANNEL_ID }}
slack-message: ":thumbsup: VR Nightly build succeeded: \n
${{github.event.head_commit.url }} \n
${{format('{0}: {1}', 'build-acm-api', needs.build-acm-api.result) }}\n
${{format('{0}: {1}', 'build-public-api', needs.build-public-api.result) }}\n
${{format('{0}: {1}', 'build-public-projections', needs.build-public-projections.result) }}\n
${{format('{0}: {1}', 'build-admin-api', needs.build-admin-api.result) }}\n
${{format('{0}: {1}', 'build-admin-projections', needs.build-admin-projections.result) }}\n
${{ github.event.pull_request.html_url || github.event.head_commit.url }}"
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
notify-failure:
if: ${{ failure() }}
name: Notify Slack of Failure
runs-on: ubuntu-latest
needs:
- build-acm-api
- build-public-api
- build-public-projections
- build-admin-api
- build-admin-projections
steps:
- name: Post to Slack
id: slack
uses: slackapi/slack-github-action@v1.21.0
with:
# Slack channel id, channel name, or user id to post message.
# See also: https://api.slack.com/methods/chat.postMessage#channels
channel-id: ${{ secrets.SLACK_CHANNEL_ID }}
# For posting a simple plain text message
slack-message: ":thumbsdown: VR Nightly build failed some checks: \n
${{github.event.head_commit.url }} \n
${{format('{0}: {1}', 'build-acm-api', needs.build-acm-api.result) }}\n
${{format('{0}: {1}', 'build-public-api', needs.build-public-api.result) }}\n
${{format('{0}: {1}', 'build-public-projections', needs.build-public-projections.result) }}\n
${{format('{0}: {1}', 'build-admin-api', needs.build-admin-api.result) }}\n
${{format('{0}: {1}', 'build-admin-projections', needs.build-admin-projections.result) }}\n
${{ github.event.pull_request.html_url || github.event.head_commit.url }}"
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}