-
Notifications
You must be signed in to change notification settings - Fork 2
121 lines (104 loc) · 3.44 KB
/
ci.yaml
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
name: ci
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
env:
Cake_Settings_EnableScriptCache: true
Cake_Settings_ShowProcessCommandLine: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_NOLOGO: true
DOTNET_ROLL_FORWARD: Major
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
jobs:
build-docker:
needs: [ build-linux, build-mac, build-windows ]
runs-on: ubuntu-latest
container: dockfool/cake-docker:latest
steps:
- name: Checkout source
uses: actions/[email protected]
with:
fetch-depth: 0
filter: tree:0
show-progress: false
- name: Cache packages
uses: actions/[email protected]
with:
path: ${{ env.NUGET_PACKAGES }}
key: ${{ runner.os }}-nuget-${{ hashFiles('.config/dotnet-tools.json', '**/packages.lock.json') }}
restore-keys: ${{ runner.os }}-nuget-
- name: Cake build
run: dotnet tool restore && dotnet cake --verbosity=verbose --publish=true
build-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/[email protected]
with:
fetch-depth: 0
filter: tree:0
show-progress: false
- name: Install dotnet
uses: actions/[email protected]
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 8.0.404
- name: Cache packages
uses: actions/[email protected]
with:
path: ${{ env.NUGET_PACKAGES }}
key: ${{ runner.os }}-nuget-${{ hashFiles('.config/dotnet-tools.json', '**/packages.lock.json') }}
restore-keys: ${{ runner.os }}-nuget-
- name: Cake build
run: dotnet tool restore && dotnet cake --verbosity=verbose
build-mac:
runs-on: macos-latest
steps:
- name: Checkout source
uses: actions/[email protected]
with:
fetch-depth: 0
filter: tree:0
show-progress: false
- name: Install dotnet
uses: actions/[email protected]
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 8.0.404
- name: Cache packages
uses: actions/[email protected]
with:
path: ${{ env.NUGET_PACKAGES }}
key: ${{ runner.os }}-nuget-${{ hashFiles('.config/dotnet-tools.json', '**/packages.lock.json') }}
restore-keys: ${{ runner.os }}-nuget-
- name: Cake build
run: dotnet tool restore && dotnet cake --verbosity=verbose
build-windows:
runs-on: windows-latest
steps:
- name: Checkout source
uses: actions/[email protected]
with:
fetch-depth: 0
filter: tree:0
show-progress: false
- name: Install dotnet
uses: actions/[email protected]
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 8.0.404
- name: Cache packages
uses: actions/[email protected]
with:
path: ${{ env.NUGET_PACKAGES }}
key: ${{ runner.os }}-nuget-${{ hashFiles('.config/dotnet-tools.json', '**/packages.lock.json') }}
restore-keys: ${{ runner.os }}-nuget-
- name: Cake build
run: dotnet tool restore && dotnet cake --verbosity=verbose