-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (59 loc) · 2.01 KB
/
pre-integration.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
name: "Pre-Integration"
on:
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
dotnet-build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: 🛒 Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: ⚙️ Setup dotnet 8.0.x
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: 🧹 Clean non-wpf solution
run: dotnet clean Atc.Azure.IoT-WithoutWpf.sln -c Release && dotnet nuget locals all --clear
if: runner.os != 'Windows'
- name: 🧹 Clean all
run: dotnet clean Atc.Azure.IoT.sln -c Release && dotnet nuget locals all --clear
if: runner.os == 'Windows'
- name: 🔁 Restore packages non-wpf solution
run: dotnet restore Atc.Azure.IoT-WithoutWpf.sln
if: runner.os != 'Windows'
- name: 🔁 Restore packages all
run: dotnet restore Atc.Azure.IoT.sln
if: runner.os == 'Windows'
- name: 🛠️ Build non-wpf solution
run: dotnet build Atc.Azure.IoT-WithoutWpf.sln -c Release --no-restore
if: runner.os != 'Windows'
- name: 🛠️ Build all
run: dotnet build Atc.Azure.IoT.sln -c Release --no-restore
if: runner.os == 'Windows'
dotnet-test:
runs-on: windows-latest
needs:
- dotnet-build
steps:
- name: 🛒 Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: ⚙️ Setup dotnet 8.0.x
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: 🔁 Restore packages
run: dotnet restore Atc.Azure.IoT.sln
- name: 🛠️ Build all
run: dotnet build Atc.Azure.IoT.sln -c Release --no-restore /p:UseSourceLink=true
- name: 🧪 Run unit tests
run: dotnet test Atc.Azure.IoT.sln -c Release --no-build --filter "Category!=Integration"