-
-
Notifications
You must be signed in to change notification settings - Fork 0
248 lines (215 loc) · 7.21 KB
/
build-test-deploy.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
name: build-test-deploy
on: [push, pull_request]
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: false
jobs:
# no point in matrix without deploy tasks
# see discussion: https://github.com/orgs/community/discussions/42335
# build-test:
# strategy:
# matrix:
# os: [ubuntu-latest, windows-latest, macos-latest]
# uses: ./.github/workflows/build-test.yml
# with:
# runs-on: ${{ matrix.os }}
# passing env to jobs
# see: https://github.com/orgs/community/discussions/26671
# building tasks
build-windows:
uses: ./.github/workflows/build.yml
with:
runs-on: windows-latest
dotnet-version: '8.x'
build-linux:
uses: ./.github/workflows/build.yml
with:
runs-on: ubuntu-latest
dotnet-version: '8.x'
build-macos:
uses: ./.github/workflows/build.yml
with:
runs-on: macos-latest
dotnet-version: '8.x'
# testing tasks
test-windows:
needs: build-windows
uses: ./.github/workflows/test.yml
with:
runs-on: windows-latest
projects: '["Deploy.Tests/Deploy.Tests.csproj", "Deploy.Server.Tests/Deploy.Server.Tests.csproj"]'
dotnet-version: '8.x'
upload-coverage: false
secrets: inherit
test-linux:
needs: build-linux
uses: ./.github/workflows/test.yml
with:
projects: '["Deploy.Tests/Deploy.Tests.csproj", "Deploy.Server.Tests/Deploy.Server.Tests.csproj"]'
runs-on: ubuntu-latest
dotnet-version: '8.x'
upload-coverage: true
secrets: inherit
test-macos:
needs: build-macos
uses: ./.github/workflows/test.yml
with:
projects: '["Deploy.Tests/Deploy.Tests.csproj", "Deploy.Server.Tests/Deploy.Server.Tests.csproj"]'
runs-on: macos-latest
dotnet-version: '8.x'
upload-coverage: false
secrets: inherit
# deploy binaries
deploy-binaries-windows:
needs: test-windows
if: github.ref == 'refs/heads/master'
uses: ./.github/workflows/deploy-binaries.yml
with:
runs-on: windows-latest
projects: '["Deploy.Cli/Deploy.Cli.csproj", "Deploy.Gui/Deploy.Gui.csproj", "Deploy.Server/Deploy.Server.csproj", "Deploy.Client/Deploy.Client.csproj"]'
publish-base: 'artifacts/publish'
continious-tag: 'continious'
dotnet-version: '8.x'
build-props-path: 'Directory.Build.props'
secrets: inherit
deploy-binaries-linux:
needs: test-linux
if: github.ref == 'refs/heads/master'
uses: ./.github/workflows/deploy-binaries.yml
with:
runs-on: ubuntu-latest
projects: '["Deploy.Cli/Deploy.Cli.csproj", "Deploy.Gui/Deploy.Gui.csproj", "Deploy.Server/Deploy.Server.csproj", "Deploy.Client/Deploy.Client.csproj"]'
publish-base: 'artifacts/publish'
continious-tag: 'continious'
dotnet-version: '8.x'
build-props-path: 'Directory.Build.props'
secrets: inherit
deploy-binaries-macos:
needs: test-macos
if: github.ref == 'refs/heads/master'
uses: ./.github/workflows/deploy-binaries.yml
with:
runs-on: macos-latest
projects: '["Deploy.Cli/Deploy.Cli.csproj", "Deploy.Gui/Deploy.Gui.csproj", "Deploy.Server/Deploy.Server.csproj", "Deploy.Client/Deploy.Client.csproj"]'
publish-base: 'artifacts/publish'
continious-tag: 'continious'
dotnet-version: '8.x'
build-props-path: 'Directory.Build.props'
secrets: inherit
# deploy pages
deploy-pages-linux:
needs: test-linux
if: github.ref == 'refs/heads/master'
uses: ./.github/workflows/deploy-pages.yml
with:
runs-on: ubuntu-latest
dotnet-version: '8.x'
docfx-json-path: 'docfx.json'
publish-dir: 'docs'
secrets: inherit
# deploy src
deploy-src-linux:
needs: test-linux
if: github.ref == 'refs/heads/master'
uses: ./.github/workflows/deploy-src.yml
with:
runs-on: ubuntu-latest
publish-base: 'artifacts/publish'
continious-tag: 'continious'
build-props-path: 'Directory.Build.props'
secrets: inherit
# deploy peckages
deploy-packages-nuget-linux:
needs: test-linux
if: github.ref == 'refs/heads/master'
uses: ./.github/workflows/deploy-packages.yml
with:
runs-on: ubuntu-latest
packages: '["Deploy.Core/Deploy.Core.csproj", "Deploy.Core.Dummy/Deploy.Core.Dummy.csproj"]'
publish-base: 'artifacts/publish'
package-feed: "https://api.nuget.org/v3/index.json"
dotnet-version: '8.x'
build-props-path: 'Directory.Build.props'
secrets:
TOKEN: ${{secrets.NUGET_API_KEY}}
deploy-packages-github-linux:
needs: test-linux
if: github.ref == 'refs/heads/master'
uses: ./.github/workflows/deploy-packages.yml
with:
runs-on: ubuntu-latest
packages: '["Deploy.Core/Deploy.Core.csproj", "Deploy.Core.Dummy/Deploy.Core.Dummy.csproj"]'
publish-base: 'artifacts/publish'
package-feed: "https://nuget.pkg.github.com/${{github.repository_owner}}/index.json"
dotnet-version: '8.x'
build-props-path: 'Directory.Build.props'
secrets:
TOKEN: ${{secrets.GITHUB_TOKEN}}
# deploy docker
deploy-docker-docker-hub-linux:
needs: test-linux
if: github.ref == 'refs/heads/master'
strategy:
matrix:
project: ["deploy.cli---Cli.Dockerfile", "deploy.benchmarks---Benchmarks.Dockerfile"]
uses: ./.github/workflows/deploy-docker.yml
with:
runs-on: ubuntu-latest
registry: 'docker.io'
project: ${{matrix.project}}
build-props-path: 'Directory.Build.props'
continious-tag: 'latest'
username: gigas002
secrets:
TOKEN: ${{secrets.DOCKER_HUB_TOKEN}}
deploy-docker-github-linux:
needs: test-linux
if: github.ref == 'refs/heads/master'
strategy:
matrix:
project: ["deploy.cli---Cli.Dockerfile", "deploy.benchmarks---Benchmarks.Dockerfile"]
uses: ./.github/workflows/deploy-docker.yml
with:
runs-on: ubuntu-latest
registry: 'ghcr.io'
project: ${{matrix.project}}
build-props-path: 'Directory.Build.props'
continious-tag: 'latest'
username: ${{github.repository_owner}}
secrets:
TOKEN: ${{secrets.GITHUB_TOKEN}}
# snyk security report
snyk-check-code-linux:
uses: ./.github/workflows/snyk-check-code.yml
if: github.ref == 'refs/heads/master'
with:
runs-on: ubuntu-latest
dotnet-version: '8.x'
secrets: inherit
# snyk docker images checks
snyk-check-docker-docker-hub-linux:
needs: deploy-docker-docker-hub-linux
if: github.ref == 'refs/heads/master'
strategy:
matrix:
project: ["deploy.cli---Cli.Dockerfile", "deploy.benchmarks---Benchmarks.Dockerfile"]
uses: ./.github/workflows/snyk-check-docker.yml
with:
runs-on: ubuntu-latest
registry: 'docker.io'
project: ${{matrix.project}}
username: gigas002
secrets: inherit
snyk-check-docker-github-linux:
needs: deploy-docker-github-linux
if: github.ref == 'refs/heads/master'
strategy:
matrix:
project: ["deploy.cli---Cli.Dockerfile", "deploy.benchmarks---Benchmarks.Dockerfile"]
uses: ./.github/workflows/snyk-check-docker.yml
with:
runs-on: ubuntu-latest
registry: 'ghcr.io'
project: ${{matrix.project}}
username: gigas002
secrets: inherit