forked from nilaoda/BBDown
-
Notifications
You must be signed in to change notification settings - Fork 5
108 lines (78 loc) · 3.01 KB
/
build_latest.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
name: Build Latest
on: [push,workflow_dispatch]
env:
DOTNET_SDK_VERSION: '8.0.*'
jobs:
build-win-x64-arm64:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Set up dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_SDK_VERSION }}
- run: dotnet publish BBDown -r win-x64 -c Release -o artifact-x64
- run: dotnet publish BBDown -r win-arm64 -c Release -o artifact-arm64
- name: Upload Artifact[win-x64]
uses: actions/upload-artifact@v3.1.3
with:
name: BBDown_win-x64
path: artifact-x64\BBDown.exe
- name: Upload Artifact[win-arm64]
uses: actions/upload-artifact@v3.1.3
with:
name: BBDown_win-arm64
path: artifact-arm64\BBDown.exe
build-linux-x64:
runs-on: ubuntu-latest
container: ubuntu:18.04
steps:
- run: apt-get update
- run: apt-get install -y curl wget
- uses: actions/checkout@v1
- name: Set up dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_SDK_VERSION }}
- run: apt-get install -y libicu-dev libcurl4-openssl-dev zlib1g-dev libkrb5-dev
- run: dotnet publish BBDown -r linux-x64 -c Release -o artifact
- name: Upload Artifact[linux-x64]
uses: actions/upload-artifact@v3.1.3
with:
name: BBDown_linux-x64
path: artifact/BBDown
build-linux-arm64:
runs-on: ubuntu-latest
container: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-cross-arm64-20220312201346-b2c2436
steps:
- uses: actions/checkout@v1
- name: Set up dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_SDK_VERSION }}
- run: dotnet publish BBDown -r linux-arm64 -c Release -p:StripSymbols=true -p:CppCompilerAndLinker=clang-9 -p:SysRoot=/crossrootfs/arm64 -o artifact
- name: Upload Artifact[linux-arm64]
uses: actions/upload-artifact@v3.1.3
with:
name: BBDown_linux-arm64
path: artifact/BBDown
build-mac-x64-arm64:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: Set up dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_SDK_VERSION }}
- run: dotnet publish BBDown -r osx-arm64 -c Release -o artifact-arm64
- run: dotnet publish BBDown -r osx-x64 -c Release -o artifact-x64
- name: Upload Artifact[osx-x64]
uses: actions/upload-artifact@v3.1.3
with:
name: BBDown_osx-x64
path: artifact-x64/BBDown
- name: Upload Artifact[osx-arm64]
uses: actions/upload-artifact@v3.1.3
with:
name: BBDown_osx-arm64
path: artifact-arm64/BBDown