generated from AArnott/Library.Template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
193 lines (169 loc) · 6.08 KB
/
build.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
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
name: CI
on:
push:
branches:
- main
- validate/*
tags:
- 'v*.*'
pull_request:
workflow_dispatch:
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
BUILDCONFIGURATION: Release
codecov_token: 38462e91-92d5-4fa6-be55-f363099a3e15
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages/
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-20.04
test_target: x86_64-unknown-linux-gnu
- os: macos-latest
test_target: x86_64-apple-darwin
- os: windows-latest
test_target: x86_64-pc-windows-msvc
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.
submodules: recursive
- uses: Swatinem/rust-cache@v2
with:
shared-key: ${{ matrix.os }}
workspaces: src/nerdbank-zcash-rust
- name: ⚙ Install prerequisites
run: |
./init.ps1 -UpgradePrerequisites
dotnet --info
# Print mono version if it is present.
if (Get-Command mono -ErrorAction SilentlyContinue) {
mono --version
}
shell: pwsh
- name: ⚙️ Set pipeline variables based on source
run: azure-pipelines/variables/_pipelines.ps1
shell: pwsh
- name: 🛠 cargo build
run: src/nerdbank-zcash-rust/build_all.ps1 -Release
shell: pwsh
- name: 📢 Upload artifacts
uses: actions/upload-artifact@v1
with:
name: rust
path: obj/src/nerdbank-zcash-rust/
- name: 🧪 cargo test
run: cargo test -r --target ${{ matrix.test_target }}
working-directory: ./src/nerdbank-zcash-rust
- name: 🛠 dotnet build
run: dotnet build --no-restore -c ${{ env.BUILDCONFIGURATION }} -warnaserror /bl:"${{ runner.temp }}/_artifacts/build_logs/build.binlog"
- name: 🧪 dotnet test
run: azure-pipelines/dotnet-test-cloud.ps1 -Configuration ${{ env.BUILDCONFIGURATION }} -Agent ${{ runner.os }}
shell: pwsh
- name: ⚙ Update pipeline variables based on build outputs
run: azure-pipelines/variables/_pipelines.ps1
shell: pwsh
- name: 📥 Collect artifacts
run: azure-pipelines/artifacts/_stage_all.ps1
shell: pwsh
if: always()
- name: 📢 Upload test_logs
if: always()
uses: actions/upload-artifact@v1
with:
name: test_logs-${{ runner.os }}
path: ${{ runner.temp }}/_artifacts/test_logs
continue-on-error: true
- name: 📢 Upload testResults
if: always()
uses: actions/upload-artifact@v1
with:
name: testResults-${{ runner.os }}
path: ${{ runner.temp }}/_artifacts/testResults
continue-on-error: true
- name: 📢 Upload coverageResults
if: always()
uses: actions/upload-artifact@v1
with:
name: coverageResults-${{ runner.os }}
path: ${{ runner.temp }}/_artifacts/coverageResults
continue-on-error: true
- name: 📢 Publish code coverage results to codecov.io
run: ./azure-pipelines/publish-CodeCov.ps1 -CodeCovToken '${{ secrets.CODECOV_TOKEN }}' -PathToCodeCoverage '${{ runner.temp }}/_artifacts/coverageResults' -Name "${{ runner.os }} Coverage Results" -Flags "${{ runner.os }}Host,${{ env.BUILDCONFIGURATION }}"
shell: pwsh
timeout-minutes: 3
continue-on-error: true
if: always()
pack:
needs: build
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.
submodules: recursive # workaround https://github.com/dotnet/sourcelink/issues/1071
- name: ⚙ Install prerequisites
run: |
./init.ps1 -UpgradePrerequisites -NoRust
dotnet --info
# Print mono version if it is present.
if (Get-Command mono -ErrorAction SilentlyContinue) {
mono --version
}
shell: pwsh
- name: ⚙️ Set pipeline variables based on source
run: azure-pipelines/variables/_pipelines.ps1
shell: pwsh
- name: 🔻 Download rust artifacts
uses: actions/download-artifact@v3
with:
name: rust
path: obj/src/nerdbank-zcash-rust/
- name: 🛠 build
run: dotnet pack --no-restore -c ${{ env.BUILDCONFIGURATION }} -warnaserror /bl:"${{ runner.temp }}/_artifacts/build_logs/build.binlog"
- name: ⚙ Update pipeline variables based on build outputs
run: azure-pipelines/variables/_pipelines.ps1
shell: pwsh
- name: 📥 Collect artifacts
run: azure-pipelines/artifacts/_stage_all.ps1
shell: pwsh
if: always()
- name: 🔏 Code sign
run: >
dotnet tool install --tool-path obj SignClient
obj/SignClient sign
--baseDirectory '${{ runner.temp }}/_artifacts/deployables'
--input '**/*'
--config '${{ github.workspace }}/azure-pipelines/SignClient.json'
--filelist '${{ github.workspace }}/azure-pipelines/signfiles.txt'
--user '${{ secrets.CODESIGN_USERNAME }}'
--secret '${{ secrets.CODESIGN_SECRET }}'
--name 'Nerdbank.Streams'
--descriptionUrl 'https://github.com/nerdcash/Nerdbank.Cryptocurrencies'
if: success() && github.event_name != 'pull_request'
shell: pwsh
- name: 📢 Upload build_logs
if: always()
uses: actions/upload-artifact@v1
with:
name: build_logs-pack
path: ${{ runner.temp }}/_artifacts/build_logs
continue-on-error: true
- name: 📢 Upload symbols
uses: actions/upload-artifact@v1
with:
name: symbols
path: ${{ runner.temp }}/_artifacts/symbols
continue-on-error: true
- name: 📢 Upload deployables
uses: actions/upload-artifact@v1
with:
name: deployables
path: ${{ runner.temp }}/_artifacts/deployables
if: always()
- name: 🚀 Push NuGet packages
if: startsWith(github.ref, 'refs/tags/')
run: dotnet nuget push ${{ runner.temp }}/_artifacts/deployables/*.nupkg --source https://api.nuget.org/v3/index.json -k '${{ secrets.NUGET_API_KEY }}'