This repository was archived by the owner on Jan 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
140 lines (137 loc) Β· 3.67 KB
/
ci.yml
File metadata and controls
140 lines (137 loc) Β· 3.67 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
# ------------------------------------------------------------------------------
# <auto-generated>
#
# This code was generated.
#
# - To turn off auto-generation set:
#
# [GitHubActionsSteps (AutoGenerate = false)]
#
# - To trigger manual generation invoke:
#
# nuke --generate-configuration GitHubActions_ci --host GitHubActions
#
# </auto-generated>
# ------------------------------------------------------------------------------
name: ci
on:
push:
branches:
- 'master'
- 'main'
- 'next'
tags:
- 'v*'
paths-ignore:
- '.codecov.yml'
- '.editorconfig'
- '.gitattributes'
- '.gitignore'
- '.gitmodules'
- '.lintstagedrc.js'
- '.prettierignore'
- '.prettierrc'
- 'LICENSE'
- 'nukeeper.settings.json'
- 'omnisharp.json'
- 'package-lock.json'
- 'package.json'
- 'Readme.md'
pull_request:
branches:
- 'master'
- 'main'
- 'next'
paths-ignore:
- '.codecov.yml'
- '.editorconfig'
- '.gitattributes'
- '.gitignore'
- '.gitmodules'
- '.lintstagedrc.js'
- '.prettierignore'
- '.prettierrc'
- 'LICENSE'
- 'nukeeper.settings.json'
- 'omnisharp.json'
- 'package-lock.json'
- 'package.json'
- 'Readme.md'
jobs:
Build:
strategy:
fail-fast: false
matrix:
os: [macOS-latest, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2.4.0
with:
clean: 'false'
fetch-depth: '0'
- name: Fetch all history for all tags and branches
run: |
git fetch --prune
- name: π¨ Use .NET Core 2.1 SDK
uses: actions/setup-dotnet@v1.9.0
with:
dotnet-version: '2.1.x'
- name: π¨ Use .NET Core 3.1 SDK
uses: actions/setup-dotnet@v1.9.0
with:
dotnet-version: '3.1.x'
- name: π¨ Use .NET Core 6.0 SDK
uses: actions/setup-dotnet@v1.9.0
with:
dotnet-version: '6.0.x'
- name: π dotnet tool restore
run: |
dotnet tool restore
- name: π Restore
run: |
dotnet nuke Restore --skip
- name: β Build
run: |
dotnet nuke Build --skip
- name: π¦ Test
run: |
dotnet nuke Test TriggerCodeCoverageReports GenerateCodeCoverageReportCobertura GenerateCodeCoverageBadges GenerateCodeCoverageSummary GenerateCodeCoverageReport --skip
- name: π¦ Pack
run: |
dotnet nuke Pack --skip
- name: πΏ Publish Coverage
uses: codecov/codecov-action@v2.1.0
with:
name: 'actions-${{ matrix.os }}'
- name: πΊ Publish logs
if: always()
uses: actions/upload-artifact@v2.3.1
with:
name: 'logs'
path: 'artifacts/logs/'
- name: πΊ Publish coverage data
if: always()
uses: actions/upload-artifact@v2.3.1
with:
name: 'coverage'
path: 'coverage/'
- name: πΊ Publish test data
if: always()
uses: actions/upload-artifact@v2.3.1
with:
name: 'test data'
path: 'artifacts/test/'
- name: πΊ Publish NuGet Packages
if: always()
uses: actions/upload-artifact@v2.3.1
with:
name: 'nuget'
path: 'artifacts/nuget/'
Publish:
needs:
- Build
uses: RocketSurgeonsGuild/actions/.github/workflows/publish-nuget.yml@v0.2.6
secrets:
RSG_NUGET_API_KEY: '${{ secrets.RSG_NUGET_API_KEY }}'
RSG_AZURE_DEVOPS: '${{ secrets.RSG_AZURE_DEVOPS }}'