This repository was archived by the owner on Feb 22, 2026. It is now read-only.
forked from xunit/xunit
-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (63 loc) · 1.77 KB
/
ci-unsigned.yaml
File metadata and controls
73 lines (63 loc) · 1.77 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
name: "xUnit.net CI Build (unsigned)"
on:
push:
branches-ignore:
- main
- 'rel/**'
workflow_dispatch:
jobs:
build:
name: "Build"
runs-on: windows-latest
env:
DOTNET_CLI_WORKLOAD_UPDATE_NOTIFY_DISABLE: true
DOTNET_NOLOGO: true
steps:
- name: Clone source
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v2
- name: Install .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x
9.0.x
10.0.x
- name: Get .NET information
run: dotnet --info
continue-on-error: true
- name: "Build target: CI"
run: dotnet run --project tools/builder --no-launch-profile -- CI --timing --no-x86
- name: "Build target: Packages"
run: dotnet run --project tools/builder --no-launch-profile -- Packages --timing
- name: "Upload artifact: build"
uses: actions/upload-artifact@v4
with:
name: build
path: artifacts/build
compression-level: 9
if: always()
- name: "Upload artifact: test"
uses: actions/upload-artifact@v4
with:
name: test
path: artifacts/test
compression-level: 9
if: always()
- name: "Upload artifact: packages"
uses: actions/upload-artifact@v4
with:
name: packages
path: artifacts/packages
compression-level: 0
if: always()
- name: Publish Test Report
uses: ctrf-io/github-test-reporter@v1
with:
report-path: './artifacts/test/*.ctrf'
github-report: true
if: always()