-
Notifications
You must be signed in to change notification settings - Fork 520
273 lines (230 loc) · 7.86 KB
/
dev.yml
File metadata and controls
273 lines (230 loc) · 7.86 KB
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
262
263
264
265
266
267
268
269
270
271
272
name: Dev
concurrency: build
on:
push:
branches:
- 'master'
- 'release/*'
pull_request:
branches:
- 'master'
- 'release/*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Prepare - Checkout
uses: actions/checkout@v4.2.2
- name: Prepare - Setup Docker Buildx
uses: docker/setup-buildx-action@v3.11.1
- name: Build
uses: docker/build-push-action@v6.18.0
env:
DOCKER_BUILD_RECORD_UPLOAD: false
with:
cache-from: type=gha
cache-to: type=gha,mode=max
test-containers:
runs-on: ubuntu-latest
needs: build
steps:
- name: Prepare - Checkout
uses: actions/checkout@v4.2.2
- name: Prepare - Setup dotnet
id: dotnet
uses: actions/setup-dotnet@v4.3.1
with:
dotnet-version: 8.0.x
# Note: Unless a concrete version is specified in the `global.json` file,
# the latest .NET version installed on the runner (including preinstalled
# versions) will be used by default. To control this behavior, you may want
# to use temporary `global.json` files.
# https://github.com/actions/setup-dotnet/blob/main/README.md#matrix-testing
- name: Create `global.json`
run: |
echo '{"sdk":{"version": "${{ steps.dotnet.outputs.dotnet-version }}"}}' > ./global.json
- name: Test - TestContainers
run: dotnet test backend/Squidex.sln --filter Category=TestContainer
test-mongo:
runs-on: ubuntu-latest
needs: build
steps:
- name: Prepare - Checkout
uses: actions/checkout@v4.2.2
- name: Prepare - Setup Docker Buildx
uses: docker/setup-buildx-action@v3.11.1
- name: Prepare - Setup dotnet
uses: actions/setup-dotnet@v4.3.1
with:
dotnet-version: 8.0.x
- name: Prepare - Setup Node
uses: actions/setup-node@v4.4.0
with:
node-version: 18
- name: Build
uses: docker/build-push-action@v6.18.0
env:
DOCKER_BUILD_RECORD_UPLOAD: false
DOCKER_BUILD_SUMMARY: false
with:
load: true
cache-from: type=gha
cache-to:
tags: squidex-local
- name: Start Compose
run: docker compose up -d
working-directory: tools/TestSuite
- name: RUN on Mongo
run: dotnet test tools/TestSuite/TestSuite.ApiTests/TestSuite.ApiTests.csproj --filter Category!=NotAutomated
env:
CONFIG__BACKUPURL: http://localhost:5000
CONFIG__WAIT: 60
CONFIG__SERVER__URL: http://localhost:8080
WEBHOOKCATCHER__HOST__ENDPOINT: webhookcatcher
- name: RUN on Mongo on path with worker
run: dotnet test tools/TestSuite/TestSuite.ApiTests/TestSuite.ApiTests.csproj --filter Category!=NotAutomated
env:
CONFIG__BACKUPURL: http://localhost:5000
CONFIG__WAIT: 60
CONFIG__SERVER__URL: http://localhost:8081/squidex
WEBHOOKCATCHER__HOST__ENDPOINT: webhookcatcher
- name: Install Playwright Dependencies
run: npm ci
working-directory: './tools/e2e'
- name: Install Playwright Browsers
run: npx playwright install --with-deps
working-directory: './tools/e2e'
- name: Run Playwright Tests
run: npx playwright test --retries=3
working-directory: './tools/e2e'
env:
BASE__URL: http://localhost:8080
- name: Upload Playwright Artifacts
if: always()
uses: actions/upload-artifact@v4.6.2
with:
name: playwright-report
path: tools/e2e/playwright-report/
retention-days: 30
- name: Dump docker logs on failure
if: failure()
uses: jwalton/gh-docker-logs@v2.2.2
with:
dest: './docker-logs'
- name: Upload docker logs
if: failure()
uses: actions/upload-artifact@v4.6.2
with:
name: docker-logs
path: './docker-logs'
- name: Cleanup
if: always()
run: docker compose down
working-directory: tools/TestSuite
test-sql:
runs-on: ubuntu-latest
needs: build
strategy:
matrix:
include:
- name: mysql
compose: docker-compose-mysql.yml
optional: false
- name: postgres
compose: docker-compose-postgres.yml
optional: false
- name: sqlserver
compose: docker-compose-sqlserver.yml
optional: false
- name: ferretdb
compose: docker-compose-ferretdb.yml
optional: true
continue-on-error: ${{ matrix.optional == true }}
steps:
- name: Prepare - Checkout
uses: actions/checkout@v4.2.2
- name: Prepare - Setup Docker Buildx
uses: docker/setup-buildx-action@v3.11.1
- name: Prepare - Setup dotnet
uses: actions/setup-dotnet@v4.3.1
with:
dotnet-version: 8.0.x
- name: Prepare - Setup Node
uses: actions/setup-node@v4.4.0
with:
node-version: 18
- name: Build
uses: docker/build-push-action@v6.18.0
env:
DOCKER_BUILD_RECORD_UPLOAD: false
DOCKER_BUILD_SUMMARY: false
with:
load: true
cache-from: type=gha
cache-to:
tags: squidex-local
- name: Start Compose
run: docker compose -f ${{ matrix.compose }} up -d
working-directory: tools/TestSuite
- name: RUN on ${{ matrix.name }}
run: dotnet test tools/TestSuite/TestSuite.ApiTests/TestSuite.ApiTests.csproj --filter "Category!=NotAutomated & Category!=MongoOnly"
env:
CONFIG__BACKUPURL: http://localhost:5000
CONFIG__WAIT: 60
CONFIG__SERVER__URL: http://localhost:8080
WEBHOOKCATCHER__HOST__ENDPOINT: webhookcatcher
- name: Dump docker logs on failure
if: failure()
uses: jwalton/gh-docker-logs@v2.2.2
with:
dest: './docker-logs'
- name: Upload docker logs
if: failure()
uses: actions/upload-artifact@v4.6.2
with:
name: docker-logs-${{ matrix.name }}
path: './docker-logs'
- name: Cleanup
if: always()
run: docker compose down
working-directory: tools/TestSuite
publish:
runs-on: ubuntu-latest
needs: [test-containers, test-mongo, test-sql]
steps:
- name: Prepare - Checkout
uses: actions/checkout@v4.2.2
- name: Prepare - Inject short Variables
uses: rlespinasse/github-slug-action@v5.1.0
- name: Prepare - Setup QEMU
uses: docker/setup-qemu-action@v3.6.0
- name: Prepare - Setup Docker Buildx
uses: docker/setup-buildx-action@v3.11.1
- name: Prepare - Remove unnecessary files
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Calculate Version
if: github.event_name != 'pull_request'
env:
BUILD_NUMBER: ${{ github.run_number }}
run: |
echo "BUILD_NUMBER=$(($BUILD_NUMBER + 6000))" >> $GITHUB_ENV
- name: Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3.4.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build & Push for Multi-Platforms
if: github.event_name != 'pull_request'
uses: docker/build-push-action@v6.18.0
env:
DOCKER_BUILD_RECORD_UPLOAD: false
with:
push: true
build-args: "SQUIDEX__RUNTIME__VERSION=7.0.0-dev-${{ env.BUILD_NUMBER }}"
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: linux/amd64,linux/arm64
tags: squidex/squidex:dev,squidex/squidex:dev-${{ env.BUILD_NUMBER }}