-
Notifications
You must be signed in to change notification settings - Fork 1
153 lines (122 loc) · 4.07 KB
/
Copy pathbuild.yml
File metadata and controls
153 lines (122 loc) · 4.07 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
name: build
on:
push:
branches:
- '**'
env:
DOTNET_NOLOGO: true
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
jobs:
test-java:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5.7.0
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: build
shell: pwsh
run: ./tools/build-java.ps1
test-dotnet:
runs-on: ${{ matrix.os }}
timeout-minutes: 15
strategy:
# fail-fast: false
matrix:
os:
- ubuntu-latest
# - macos-latest Doesn't work yet
- windows-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ~/.nuget/packages
# Look to see if there is a cache hit for the corresponding requirements file
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
- uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68 # v6.0.0
with:
dotnet-version: |
8
10
dotnet-quality: ga
- name: prepare
run: dotnet restore
- name: tfm
# building net461 doesn't work on non windows
if: matrix.os != 'windows-latest'
run: echo "NoNet4=true" >> $GITHUB_ENV
- name: build
run: dotnet build --no-restore
- name: test
run: dotnet test --no-build
- name: Codecov test results
if: github.event_name != 'merge_group' && !cancelled()
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
with:
use_oidc: true
report_type: test_results
fail_ci_if_error: true
- name: Codecov coverage results
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
with:
use_oidc: true
files: '**/TestResults/*/*.cobertura.xml'
fail_ci_if_error: true
build:
runs-on: windows-latest
timeout-minutes: 15
needs:
- test-java
- test-dotnet
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ~/.nuget/packages
# Look to see if there is a cache hit for the corresponding requirements file
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget-
- uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68 # v6.0.0
with:
dotnet-version: 10
dotnet-quality: ga
- name: prepare
run: dotnet restore
- name: build
run: dotnet build --no-restore -c Release
- name: pack
run: dotnet pack --no-build -o bin -c Release
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: packages
path: bin/*.nupkg
changelog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0 # Important for changelog
# doesn't work with git-cliff
# https://github.com/orhun/git-cliff/issues/1521
# filter: blob:none
show-progress: false
- name: Generate changelog with git-cliff
uses: orhun/git-cliff-action@f50e11560dce63f7c33227798f90b924471a88b5 # v4.8.0
with:
args: --unreleased --strip all
env:
# DEBUG: true
OUTPUT: CHANGELOG.md
- name: Adding changelog to summary
run: cat CHANGELOG.md >> $GITHUB_STEP_SUMMARY