-
-
Notifications
You must be signed in to change notification settings - Fork 103
73 lines (72 loc) · 2 KB
/
dotnetcore.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
# ----------------------
# <auto-generated>
#
# This file was generated with FlubuCore.
#
# To regenerate file execute flubu {{TargetName}} --ci={CIName}
#
# </auto-generated>
# ----------------------
name: build
on: [push, pull_request]
jobs:
windows-latest:
name: windows-latest
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Flubu
run: dotnet tool install --global FlubuCore.Tool --version 5.1.8
- name: buildVersion
working-directory: src
run: flubu buildVersion --nd
- name: compile.linux
working-directory: src
run: flubu compile.linux --nd
- name: test.linux
working-directory: src
run: flubu test.linux --nd
- name: package.DotnetFlubu
working-directory: src
run: flubu package.DotnetFlubu --nd
ubuntu-latest:
name: ubuntu-latest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Flubu
run: dotnet tool install --global FlubuCore.Tool --version 5.1.8
- name: buildVersion
working-directory: src
run: flubu buildVersion --nd
- name: compile.linux
working-directory: src
run: flubu compile.linux --nd
- name: test.linux
working-directory: src
run: flubu test.linux --nd
- name: package.DotnetFlubu
working-directory: src
run: flubu package.DotnetFlubu --nd
macos-latest:
name: macos-latest
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Flubu
run: dotnet tool install --global FlubuCore.Tool --version 5.1.8
- name: buildVersion
working-directory: src
run: flubu buildVersion --nd
- name: compile.linux
working-directory: src
run: flubu compile.linux --nd
- name: test.linux
working-directory: src
run: flubu test.linux --nd
- name: package.DotnetFlubu
working-directory: src
run: flubu package.DotnetFlubu --nd