-
Notifications
You must be signed in to change notification settings - Fork 38
165 lines (137 loc) · 6.37 KB
/
CI.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
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
env:
APPLICATIONINSIGHTS_CONNECTION_STRING: ${{ secrets.APPLICATIONINSIGHTS_CONNECTION_STRING }}
My_Hr_ConnectionStrings__Database: Data Source=localhost,1433;Initial Catalog=My.Hr;User id=sa;Password=sAPWD23.^0;TrustServerCertificate=true
MyEf_Hr_ConnectionStrings__Database: Data Source=localhost,1433;Initial Catalog=MyEf.Hr;User id=sa;Password=sAPWD23.^0;TrustServerCertificate=true
services:
sql:
image: mcr.microsoft.com/mssql/server:2019-latest
ports:
- 1433:1433
env:
ACCEPT_EULA: Y
SA_PASSWORD: sAPWD23.^0
options: --name sqlserver
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
7.0.x
# Tools
- name: Tools restore
run: |
dotnet restore ./tools/Beef.CodeGen.Core
dotnet restore ./tools/Beef.Database.Core
dotnet restore ./tools/Beef.Database.SqlServer
dotnet restore ./tools/Beef.Database.MySql
dotnet restore ./tools/Beef.Test.NUnit
- name: Tools build
run: |
dotnet build ./tools/Beef.CodeGen.Core --no-restore
dotnet build ./tools/Beef.Database.Core --no-restore
dotnet build ./tools/Beef.Database.SqlServer --no-restore
dotnet build ./tools/Beef.Database.MySql --no-restore
dotnet build ./tools/Beef.Test.NUnit --no-restore
# Samples/Demo
- name: Samples/Demo restore
run: |
dotnet restore ./samples/Demo/Beef.Demo.CodeGen
dotnet restore ./samples/Demo/Beef.Demo.Database
dotnet restore ./samples/Demo/Beef.Demo.Common
dotnet restore ./samples/Demo/Beef.Demo.Business
dotnet restore ./samples/Demo/Beef.Demo.Api
dotnet restore ./samples/Demo/Beef.Demo.Abc.Database
dotnet restore ./samples/Demo/Beef.Demo.Test
- name: Samples/Demo build
run: |
dotnet build ./samples/Demo/Beef.Demo.CodeGen --no-restore
dotnet build ./samples/Demo/Beef.Demo.Database --no-restore
dotnet build ./samples/Demo/Beef.Demo.Common --no-restore
dotnet build ./samples/Demo/Beef.Demo.Business --no-restore
dotnet build ./samples/Demo/Beef.Demo.Api --no-restore
dotnet build ./samples/Demo/Beef.Demo.Abc.Database --no-restore
dotnet build ./samples/Demo/Beef.Demo.Test --no-restore
# Samples/Cdr.Banking
- name: Samples/Cdr.Banking restore
run: |
dotnet restore ./samples/Cdr.Banking/Cdr.Banking.CodeGen
dotnet restore ./samples/Cdr.Banking/Cdr.Banking.Common
dotnet restore ./samples/Cdr.Banking/Cdr.Banking.Business
dotnet restore ./samples/Cdr.Banking/Cdr.Banking.Api
dotnet restore ./samples/Cdr.Banking/Cdr.Banking.Test
- name: Samples/Cdr.Banking build
run: |
dotnet build ./samples/Cdr.Banking/Cdr.Banking.CodeGen --no-restore
dotnet build ./samples/Cdr.Banking/Cdr.Banking.Common --no-restore
dotnet build ./samples/Cdr.Banking/Cdr.Banking.Business --no-restore
dotnet build ./samples/Cdr.Banking/Cdr.Banking.Api --no-restore
dotnet build ./samples/Cdr.Banking/Cdr.Banking.Test --no-restore
# Samples/My.Hr
- name: Samples/My.Hr restore
run: |
dotnet restore ./samples/My.Hr/My.Hr.CodeGen
dotnet restore ./samples/My.Hr/My.Hr.Database
dotnet restore ./samples/My.Hr/My.Hr.Common
dotnet restore ./samples/My.Hr/My.Hr.Business
dotnet restore ./samples/My.Hr/My.Hr.Api
dotnet restore ./samples/My.Hr/My.Hr.Test
- name: Samples/My.Hr build
run: |
dotnet build ./samples/My.Hr/My.Hr.CodeGen --no-restore
dotnet build ./samples/My.Hr/My.Hr.Database --no-restore
dotnet build ./samples/My.Hr/My.Hr.Common --no-restore
dotnet build ./samples/My.Hr/My.Hr.Business --no-restore
dotnet build ./samples/My.Hr/My.Hr.Api --no-restore
dotnet build ./samples/My.Hr/My.Hr.Test --no-restore
- name: Samples/My.Hr database
working-directory: ./samples/My.Hr/My.Hr.Database
run: dotnet run all --connection-varname My_Hr_ConnectionStrings__Database --expect-no-changes
- name: Samples/My.Hr code-gen
working-directory: ./samples/My.Hr/My.Hr.CodeGen
run: dotnet run all --expect-no-changes
- name: Samples/My.Hr testing
run: dotnet test ./samples/My.Hr/My.Hr.Test --no-build --verbosity normal
# Samples/MyEf.Hr
- name: Samples/MyEf.Hr restore
run: |
dotnet restore ./samples/MyEf.Hr/MyEf.Hr.CodeGen
dotnet restore ./samples/MyEf.Hr/MyEf.Hr.Database
dotnet restore ./samples/MyEf.Hr/MyEf.Hr.Common
dotnet restore ./samples/MyEf.Hr/MyEf.Hr.Business
dotnet restore ./samples/MyEf.Hr/MyEf.Hr.Api
dotnet restore ./samples/MyEf.Hr/MyEf.Hr.Test
dotnet restore ./samples/MyEf.Hr/MyEf.Hr.Security.Subscriptions
dotnet restore ./samples/MyEf.Hr/MyEf.Hr.Security.Test
- name: Samples/MyEf.Hr build
run: |
dotnet build ./samples/MyEf.Hr/MyEf.Hr.CodeGen --no-restore
dotnet build ./samples/MyEf.Hr/MyEf.Hr.Database --no-restore
dotnet build ./samples/MyEf.Hr/MyEf.Hr.Common --no-restore
dotnet build ./samples/MyEf.Hr/MyEf.Hr.Business --no-restore
dotnet build ./samples/MyEf.Hr/MyEf.Hr.Api --no-restore
dotnet build ./samples/MyEf.Hr/MyEf.Hr.Test --no-restore
dotnet build ./samples/MyEf.Hr/MyEf.Hr.Security.Subscriptions --no-restore
dotnet build ./samples/MyEf.Hr/MyEf.Hr.Security.Test --no-restore
- name: Samples/MyEf.Hr database
working-directory: ./samples/MyEf.Hr/MyEf.Hr.Database
run: dotnet run all --connection-varname MyEf_Hr_ConnectionStrings__Database --expect-no-changes
- name: Samples/MyEf.Hr code-gen
working-directory: ./samples/MyEf.Hr/MyEf.Hr.CodeGen
run: dotnet run all --expect-no-changes
- name: Samples/MyEf.Hr testing
run: |
dotnet test ./samples/MyEf.Hr/MyEf.Hr.Test --no-build --verbosity normal
dotnet test ./samples/MyEf.Hr/MyEf.Hr.Security.Test --no-build --verbosity normal