-
Notifications
You must be signed in to change notification settings - Fork 25
141 lines (122 loc) · 4.72 KB
/
Copy pathci.yml
File metadata and controls
141 lines (122 loc) · 4.72 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
name: CI
on:
push:
branches: ["master", "develop", "feature/**", "release/**", "hotfix/**"]
tags: ["*"]
pull_request:
branches: ["master", "develop"]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
# Keep the Windows build separate so we still validate the .NET Framework target
# and the packaging prerequisites that only exist on Windows runners.
build:
name: Build (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v6.0.3
with:
fetch-depth: 0
fetch-tags: true
submodules: recursive
- name: Setup .NET SDKs
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
6.0.x
8.0.x
9.0.x
10.0.x
- name: Cache NuGet packages
uses: actions/cache@v5
with:
path: ~/.nuget/packages
key: nuget-${{ runner.os }}-${{ hashFiles('**/*.csproj', '**/*.props', '**/*.targets', '.config/dotnet-tools.json') }}
restore-keys: |
nuget-${{ runner.os }}-
- name: Restore .NET tools
run: dotnet tool restore
- name: Restore solution
run: dotnet restore ./src/NEventStore.Persistence.MongoDB.Core.sln --verbosity m
- name: Run GitVersion and patch assembly info
id: gitversion
shell: pwsh
working-directory: ${{ github.workspace }}
run: |
$gitVersion = dotnet tool run dotnet-gitversion /targetpath "${{ github.workspace }}" /output json /updateAssemblyInfo | ConvertFrom-Json
dotnet tool run dotnet-gitversion /targetpath "${{ github.workspace }}/dependencies/NEventStore" /updateAssemblyInfo | Out-Null
"semver=$($gitVersion.SemVer)" >> $env:GITHUB_OUTPUT
- name: Build solution
run: dotnet build ./src/NEventStore.Persistence.MongoDB.Core.sln -c Release --no-restore /p:ContinuousIntegrationBuild=True
# Tests run on Linux because this repository needs a live MongoDB instance and
# GitHub Actions service containers are only available on Linux runners.
# The matrix is therefore per target framework instead of per OS.
test-modern-tfm-linux:
name: Test (Linux, ${{ matrix.tfm }})
needs: build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# Run each modern TFM independently so failures are isolated and easy to read.
tfm:
- net8.0
- net9.0
- net10.0
services:
# The test project reads NEventStore.MongoDB from the environment and expects
# a real MongoDB server. This sidecar provides that dependency for each matrix leg.
mongodb:
image: mongo:8
ports:
- 27017:27017
options: >-
--health-cmd "mongosh --eval \"db.adminCommand('ping')\""
--health-interval 20s
--health-timeout 10s
--health-retries 10
env:
# Match the connection-string convention used by the acceptance tests.
NEventStore.MongoDB: mongodb://127.0.0.1:27017/NEventStore
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 0
fetch-tags: true
submodules: recursive
- name: Setup .NET SDKs
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
6.0.x
8.0.x
9.0.x
10.0.x
- name: Cache NuGet packages
uses: actions/cache@v5
with:
path: ~/.nuget/packages
key: nuget-${{ runner.os }}-${{ hashFiles('**/*.csproj', '**/*.props', '**/*.targets', '.config/dotnet-tools.json') }}
restore-keys: |
nuget-${{ runner.os }}-
- name: Run tests for ${{ matrix.tfm }}
# Only the test project is executed here. It pulls in the production project and
# linked acceptance coverage from the NEventStore submodule.
run: dotnet test ./src/NEventStore.Persistence.MongoDB.Tests/NEventStore.Persistence.MongoDB.Core.Tests.csproj -c Release -f ${{ matrix.tfm }} --logger "trx;LogFileName=test-results-${{ matrix.tfm }}.trx"
- name: Upload test results
uses: actions/upload-artifact@v7
with:
name: test-results-${{ matrix.tfm }}
path: "**/test-results-${{ matrix.tfm }}.trx"
if-no-files-found: error
retention-days: 14