-
Notifications
You must be signed in to change notification settings - Fork 20
220 lines (185 loc) · 6.26 KB
/
dotnet-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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
name: ColorMC构建
on:
push:
# Sequence of patterns matched against refs/heads
branches:
- 'releases/**'
# Sequence of patterns matched against refs/tags
tags:
- '*'
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: 设置.NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.204
- name: Read version number
id: version
run: |
VERSION=$(cat ./build/version)
echo "VERSION=$VERSION" >> $GITHUB_ENV
MAINVERSION=$(cat ./build/main_version)
echo "MAINVERSION=$MAINVERSION" >> $GITHUB_ENV
- name: 更新源码
shell: bash
working-directory: ./
run: |
chmod a+x ./build/update.sh
./build/update.sh
# - name: 构建源码
# shell: bash
# working-directory: ./
# run: |
# chmod a+x ./build/build-linux.sh
# ./build/build-linux.sh
# - name: 构建 deb
# shell: bash
# working-directory: ./
# run: |
# chmod a+x ./build/build-ubuntu.sh
# ./build/build-ubuntu.sh
- name: 构建 pkg
run: |
docker run --name build-container -v "${{ github.workspace }}:/github/workspace" archlinux:latest /bin/bash -c "\
pacman -Syu --noconfirm base-devel git dotnet-sdk-8.0 && \
useradd -m builder && \
cd /github/workspace && \
chown -R builder:builder /github/workspace/ && \
chmod -R 777 /github/workspace/ && \
echo 'builder ALL=(ALL) NOPASSWD: ALL' > /etc/sudoers.d/builder && \
sudo -u builder ./build/build-linux.sh && \
sudo -u builder ./build/build-arch.sh"
# - name: 上传 linux-x86_64.pkg.tar.zst
# uses: actions/upload-artifact@v4
# with:
# name: "colormc-arch-x86_64"
# path: build_out/colormc-${{ env.MAINVERSION }}${{ env.VERSION }}-1-x86_64.pkg.tar.zst
- name: 上传 linux-x86_64
uses: actions/upload-artifact@v4
with:
name: "colormc-build"
path: src/build_out/**
# - name: 上传 linux-x86-aot.pkg.tar.zst
# uses: actions/upload-artifact@v4
# with:
# name: "colormc-arch-x86_64-aot"
# path: build_out/colormc-${{ env.MAINVERSION }}${{ env.VERSION }}-1-x86_64-aot.pkg.tar.zst
# - name: 上传 linux-x64.deb
# uses: actions/upload-artifact@v4
# with:
# name: "colormc-ubuntu-x64"
# path: build_out/colormc-${{ env.MAINVERSION }}${{ env.VERSION }}-linux-x64.deb
# - name: 上传 linux-arm64.deb
# uses: actions/upload-artifact@v4
# with:
# name: "colormc-ubuntu-arm64"
# path: build_out/colormc-${{ env.MAINVERSION }}${{ env.VERSION }}-linux-arm64.deb
# - name: 上传 linux-x64-aot.deb
# uses: actions/upload-artifact@v4
# with:
# name: "colormc-ubuntu-x64-aot"
# path: build_out/colormc-${{ env.MAINVERSION }}${{ env.VERSION }}-linux-x64-aot.deb
# - name: 上传 linux-arm64-aot.deb
# uses: actions/upload-artifact@v4
# with:
# name: "colormc-ubuntu-arm64-aot"
# path: build_out/colormc-${{ env.MAINVERSION }}${{ env.VERSION }}-linux-arm64-aot.deb
# - name: 上传 linux-x64-appimage.deb
# uses: actions/upload-artifact@v4
# with:
# name: "colormc-linux-x64-appimage"
# path: build_out/colormc-${{ env.MAINVERSION }}${{ env.VERSION }}-linux-x86_64.AppImage
# build-macos:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - name: 设置.NET Core
# uses: actions/setup-dotnet@v4
# with:
# dotnet-version: 8.0.100
# - name: 更新源码
# shell: bash
# working-directory: ./
# run: |
# chmod a+x ./build/update.sh
# ./build/update.sh
# - name: 构建
# shell: bash
# working-directory: ./
# run: |
# chmod a+x ./build/build-macos.sh
# ./build/build-macos.sh
# - name: 上传 ZIP
# uses: actions/upload-artifact@v4
# with:
# name: "colormc-macos-x64"
# path: build_out/
# build-windows:
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v3
# - name: Read version number
# id: version
# run: |
# $version = Get-Content ./build/version
# echo "VERSION=$version" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
# - name: 设置.NET Core
# uses: actions/setup-dotnet@v4
# with:
# dotnet-version: 8.0.100
# - name: 更新源码
# shell: cmd
# working-directory: ./
# run: ./build/update.cmd
# - name: 构建 源码
# shell: cmd
# working-directory: ./
# run: ./build/build-windows.cmd
# - name: Install WiX Toolset
# run: |
# choco install wixtoolset
# dotnet tool install --global wix --version 4.0.4
# wix extension add -g WixToolset.UI.wixext/4.0.4
# - name: Build MSI with MSBuild
# working-directory: ./
# run: |
# cd .\src\ColorMC.Setup.Wix
# dotnet build
# - name: 上传
# uses: actions/upload-artifact@v4
# with:
# name: "colormc-windows-x64-msi"
# path: src/ColorMC.Setup.Wix/colormc-x64.msi
# - name: 上传
# uses: actions/upload-artifact@v4
# with:
# name: "colormc-windows-x64-aot-msi"
# path: src/ColorMC.Setup.Wix/colormc-x64-aot.msi
# - name: 上传
# uses: actions/upload-artifact@v4
# with:
# name: "colormc-windows-x64"
# path: src/build_out/win-x64-dotnet/colormc/**
# - name: 上传
# uses: actions/upload-artifact@v4
# with:
# name: "colormc-windows-x86"
# path: src/build_out/win-x86-dotnet/colormc/**
# - name: 上传
# uses: actions/upload-artifact@v4
# with:
# name: "colormc-windows-arm64"
# path: src/build_out/win-arm64-dotnet/colormc/**
# - name: 上传
# uses: actions/upload-artifact@v4
# with:
# name: "colormc-windows-x64-aot"
# path: src/build_out/win-x64-aot/colormc/**
# - name: 上传
# uses: actions/upload-artifact@v4
# with:
# name: "colormc-windows-arm64-aot"
# path: src/build_out/win-arm64-aot/colormc/**