-
Notifications
You must be signed in to change notification settings - Fork 521
261 lines (230 loc) · 9.3 KB
/
fhir-oss-ci-pipeline.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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
# DESCRIPTION:
# Builds, tests, and packages the solution for the main branch.
on:
pull_request
permissions:
id-token: write
contents: read
defaults:
run:
working-directory: src
shell: bash
env:
buildConfiguration: Release
azureSubscriptionEndpoint: docker-build
azureContainerRegistryName: healthplatformregistry
connectedServiceName: Microsoft Health Open Source Subscription
composeLocation: build/docker/docker-compose.yaml
imageTag: ${{github.run_number}}
outputPath: ${{github.workspace}}/artifacts
defaultDotNetVersion: net8.0
jobs:
setup:
runs-on: [self-hosted, 1ES.Pool=GithubRunPool]
env:
deploymentEnvironmentName: $vars.CIRESOURCEGROUPROOT
appServicePlanName: $vars.CIRESOURCEGROUPROOT-linux
resourceGroupName: $vars.CIRESOURCEGROUPROOT
outputs:
assemblyVersion: ${{ steps.version.outputs.assemblyVersion }}
fileVersion: ${{ steps.version.outputs.fileVersion }}
informationalVersion: ${{ steps.version.outputs.informationalVersion }}
majorMinorPatch: ${{ steps.version.outputs.majorMinorPatch }}
semVer: ${{steps.version.outputs.SemVer}}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Latest .Net SDK
uses: actions/setup-dotnet@v4
with:
global-json-file: 'global.json'
dotnet-version: |
8.x
- name: Determine Semver
id: version
uses: ./.github/actions/update-semver
# - name: Azure Login
# uses: azure/login@v2
# with:
# client-id: ${{secrets.AZURE_CLIENT_ID}}
# subscription-id: ${{secrets.AZURE_SUBSCRIPTION_ID}}
# tenant-id: ${{secrets.AZURE_TENANT_ID}}
# enable-AzPSSession: true
# - name: Clean Storage Accounts
# uses: ./.github/actions/clean-storage-accounts
# with:
# environmentName: ${{vars.CIRESOURCEGROUPROOT}}
# - name: Cleanup Integration Test databases
# uses: ./.github/actions/cleanup-integration-test-databases
# with:
# environmentName: ${{vars.CIRESOURCEGROUPROOT}}
buildAndUnitTest:
runs-on: windows-latest
needs: setup
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check DotNet Version
run: dotnet --version
- name: Build
uses: ./.github/actions/dotnet-build
with:
assemblyVersion: ${{needs.setup.outputs.assemblyVersion}}
buildConfiguration: ${{env.buildConfiguration}}
fileVersion: ${{needs.setup.outputs.fileVersion}}
informationalVersion: ${{needs.setup.outputs.informationalVersion}}
majorMinorPatch: ${{needs.setup.outputs.majorMinorPatch}}
- name: TestCore
uses: ./.github/actions/dotnet-test-core
with:
buildConfiguration: ${{env.buildConfiguration}}
- name: TestWeb
uses: ./.github/actions/dotnet-test-web
with:
buildConfiguration: ${{env.buildConfiguration}}
# - name: Generate SBOM
# run: |
# curl -Lo $RUNNER_TEMP/sbom-tool https://github.com/microsoft/sbom-tool/releases/latest/download/sbom-tool-linux-x64
# chmod +x $RUNNER_TEMP/sbom-tool
# $RUNNER_TEMP/sbom-tool generate -b ${{env.outputPath}} -bc . -V Verbose -ps "Organization: Microsoft" -pv ${{needs.setup.outputs.majorMinorPatch}} -pn ${{needs.setup.outputs.informationalVersion}}
# - name: Upload a Build Artifact
# uses: actions/upload-artifact@v4
# with:
# name: build
# path: ${{env.outputPath}}
- name: Create Nuget packages
shell: bash
run: |
echo "Creating Nuget packages"
dotnet pack ${{github.workspace}}\Microsoft.Health.Fhir.sln --output ${{env.outputPath}}/nupkgs --no-build --configuration=${{env.buildConfiguration}} -p:PackageVersion=${{needs.setup.outputs.majorMinorPatch}}
- name: Upload Nuget Packages
uses: actions/upload-artifact@v4
with:
name: nuget
path: ${{env.outputPath}}/nupkgs
- name: samples
shell: bash
run: |
echo "Copying samples to deploy directory"
cp -r ${{github.workspace}}/samples ${{env.outputPath}}/deploy
- name: Copying testauthenvironment.json to deploy directory
shell: bash
run: |
echo "Copying testauthenvironment.json to deploy directory"
cp ${{github.workspace}}/testauthenvironment.json ${{env.outputPath}}/deploy/
- name: Copying global.json to deploy directory
shell: bash
run: |
echo "Copying global.json to deploy directory"
cp ${{github.workspace}}/global.json ${{env.outputPath}}/deploy/
- name: Copying test configuration json to deploy directory
shell: bash
run: |
echo "Copying test configuration json to deploy directory"
cp ${{github.workspace}}/test/Configuration/testconfiguration.json ${{env.outputPath}}/deploy/
- name: Copying docker compose root file to deploy directory
shell: bash
run: |
echo "Copying docker compose root file to deploy directory"
cp ${{github.workspace}}/release/docker-compose.yaml ${{env.outputPath}}/deploy
- name: Copying pdb files to symbols directory
shell: bash
run: |
echo "Copying pdb files to deploy symbols"
find ${{github.workspace}}/src -type f -name "*.pdb" ! -name "*UnitTest*" -exec cp {} ${{env.outputPath}}/symbols \;
- name: Publish Stu3 Web Artifacts to deploy directory
uses: ./.github/actions/package-web-build-artifacts
with:
fhirschemaversion: "Stu3"
majorMinorPatch: ${{needs.setup.outputs.majorMinorPatch}}
outputPath: ${{env.outputPath}}
buildConfiguration: ${{env.buildConfiguration}}
semVer: ${{needs.setup.outputs.semVer}}
- name: Publish R4 Web Artifacts to deploy directory
uses: ./.github/actions/package-web-build-artifacts
with:
fhirschemaversion: "R4"
majorMinorPatch: ${{needs.setup.outputs.majorMinorPatch}}
outputPath: ${{env.outputPath}}
buildConfiguration: ${{env.buildConfiguration}}
semVer: ${{needs.setup.outputs.semVer}}
- name: Publish R4B Web Artifacts to deploy directory
uses: ./.github/actions/package-web-build-artifacts
with:
fhirschemaversion: "R4B"
majorMinorPatch: ${{needs.setup.outputs.majorMinorPatch}}
outputPath: ${{env.outputPath}}
buildConfiguration: ${{env.buildConfiguration}}
semVer: ${{needs.setup.outputs.semVer}}
- name: Publish R5 Web Artifacts to deploy directory
uses: ./.github/actions/package-web-build-artifacts
with:
fhirschemaversion: "R5"
majorMinorPatch: ${{needs.setup.outputs.majorMinorPatch}}
outputPath: ${{env.outputPath}}
buildConfiguration: ${{env.buildConfiguration}}
semVer: ${{needs.setup.outputs.semVer}}
- name: Docker Build Stu3 Image
uses: ./.github/actions/docker-build
with:
assemblyVersion: ${{needs.setup.outputs.majorMinorPatch}}
fhirSchemaVersion: "Stu3"
composeLocation: ${{env.composeLocation}}
- name: Docker Build R4 Image
uses: ./.github/actions/docker-build
with:
assemblyVersion: ${{needs.setup.outputs.majorMinorPatch}}
fhirSchemaVersion: "R4"
composeLocation: ${{env.composeLocation}}
- name: Docker Build R4B Image
uses: ./.github/actions/docker-build
with:
assemblyVersion: ${{needs.setup.outputs.majorMinorPatch}}
fhirSchemaVersion: "R4B"
composeLocation: ${{env.composeLocation}}
- name: Docker Build R5 Image
uses: ./.github/actions/docker-build
with:
assemblyVersion: ${{needs.setup.outputs.majorMinorPatch}}
fhirSchemaVersion: "R5"
composeLocation: ${{env.composeLocation}}
- name: Upload deploy directory
uses: actions/upload-artifact@v4
with:
name: deploy
path: ${{env.outputPath}}/deploy
# - name: Upload Symbols
# uses: actions/upload-artifact@v4
# with:
# name: symbols
# path: ${{env.outputPath}}/bin/${{env.buildConfiguration}}/net5.0/publish
# runIntegrationTests:
# runs-on: [self-hosted, 1ES.Pool=GithubRunPool, Windows]
# needs : buildAndUnitTest
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# with:
# fetch-depth: 0
# - name: Download Build Artifact for Testing
# uses: actions/download-artifact@v4
# with:
# path: artifacts
# - name: Install Latest .Net SDK
# uses: actions/setup-dotnet@v4
# with:
# global-json-file: 'global.json'
# dotnet-version: |
# 6.x
# 8.x
# - name: Docker add main tag
# uses: ./.github/actions/docker-add-main-tag
# with:
# assemblySemFileVer: ${{needs.setup.outputs.semVer}}
# imageTag: ${{env.imageTag}}
# azureContainerRegistryName: ${{env.azureContainerRegistryName}}
# connectedServiceName: ${{env.connectedServiceName}}