-
Notifications
You must be signed in to change notification settings - Fork 0
296 lines (267 loc) · 9.85 KB
/
go.yml
File metadata and controls
296 lines (267 loc) · 9.85 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
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
# GitHub Actions Workflow for oho CLI
# Supports: Auto build/test, Release on tag, Multi-platform, Multi-arch
name: Go CI/CD
on:
push:
branches: [master]
tags:
- 'v*'
pull_request:
branches: [master]
workflow_dispatch:
env:
GO_VERSION: '1.21'
APP_NAME: oho
jobs:
# ===========================================
# Job 1: 代码质量检查
# ===========================================
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Download dependencies
working-directory: oho
run: go mod download
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
args: --timeout=5m
working-directory: oho
# ===========================================
# Job 2: 测试
# ===========================================
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Download dependencies
working-directory: oho
run: go mod download
- name: Run tests
working-directory: oho
run: |
go test -v -race -coverprofile=coverage.out ./...
- name: Upload coverage to Codecov
if: github.event_name == 'pull_request'
uses: codecov/codecov-action@v4
with:
files: ./coverage.out
flags: unittests
name: codecov-umbrella
# ===========================================
# Job 3: 构建 (PR 和 master 推送时)
# ===========================================
build:
name: Build
runs-on: ubuntu-latest
needs: [lint, test]
strategy:
matrix:
goos: [linux, windows, darwin]
goarch: [amd64, arm64]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Download dependencies
working-directory: oho
run: go mod download
- name: Build
working-directory: oho
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
VERSION: ${{ github.sha }}
COMMIT: ${{ github.sha }}
DATE: ${{ github.event.head_commit.timestamp }}
run: |
VERSION=$(echo ${GITHUB_SHA::8}) && \
COMMIT=${GITHUB_SHA::8} && \
DATE=$(date -u +%Y-%m-%dT%H:%M:%SZ) && \
go build -ldflags="-s -w -X main.Version=${VERSION} -X main.Commit=${COMMIT} -X main.Date=${DATE}" -o bin/${APP_NAME}-${GOOS}-${GOARCH}${{ matrix.goos == 'windows' && '.exe' || '' }} ./cmd
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.APP_NAME }}-${{ matrix.goos }}-${{ matrix.goarch }}
path: oho/bin/${{ env.APP_NAME }}-${{ matrix.goos }}-${{ matrix.goarch }}${{ matrix.goos == 'windows' && '.exe' || '' }}
retention-days: 7
# ===========================================
# Job 4: Release 发布 (仅在 tag 推送时)
# ===========================================
release:
name: Release
runs-on: ubuntu-latest
needs: [lint, test]
if: startsWith(github.ref, 'refs/tags/v')
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Download dependencies
working-directory: oho
run: go mod download
- name: Build Linux amd64
working-directory: oho
env:
GOOS: linux
GOARCH: amd64
run: |
mkdir -p dist
VERSION=${GITHUB_REF#refs/tags/} && \
COMMIT=${GITHUB_SHA::8} && \
DATE=$(date -u +%Y-%m-%dT%H:%M:%SZ) && \
go build -ldflags="-s -w -X main.Version=${VERSION} -X main.Commit=${COMMIT} -X main.Date=${DATE}" -o "dist/${{ env.APP_NAME }}-linux-amd64" ./cmd
cd dist && sha256sum ${{ env.APP_NAME }}-linux-amd64 > ${{ env.APP_NAME }}-linux-amd64.sha256
- name: Build Linux arm64
working-directory: oho
env:
GOOS: linux
GOARCH: arm64
run: |
mkdir -p dist
VERSION=${GITHUB_REF#refs/tags/} && \
COMMIT=${GITHUB_SHA::8} && \
DATE=$(date -u +%Y-%m-%dT%H:%M:%SZ) && \
go build -ldflags="-s -w -X main.Version=${VERSION} -X main.Commit=${COMMIT} -X main.Date=${DATE}" -o "dist/${{ env.APP_NAME }}-linux-arm64" ./cmd
cd dist && sha256sum ${{ env.APP_NAME }}-linux-arm64 > ${{ env.APP_NAME }}-linux-arm64.sha256
- name: Build Windows amd64
working-directory: oho
env:
GOOS: windows
GOARCH: amd64
run: |
mkdir -p dist
VERSION=${GITHUB_REF#refs/tags/} && \
COMMIT=${GITHUB_SHA::8} && \
DATE=$(date -u +%Y-%m-%dT%H:%M:%SZ) && \
go build -ldflags="-s -w -X main.Version=${VERSION} -X main.Commit=${COMMIT} -X main.Date=${DATE}" -o "dist/${{ env.APP_NAME }}-windows-amd64.exe" ./cmd
cd dist && sha256sum ${{ env.APP_NAME }}-windows-amd64.exe > ${{ env.APP_NAME }}-windows-amd64.exe.sha256
- name: Build macOS amd64
working-directory: oho
env:
GOOS: darwin
GOARCH: amd64
run: |
mkdir -p dist
VERSION=${GITHUB_REF#refs/tags/} && \
COMMIT=${GITHUB_SHA::8} && \
DATE=$(date -u +%Y-%m-%dT%H:%M:%SZ) && \
go build -ldflags="-s -w -X main.Version=${VERSION} -X main.Commit=${COMMIT} -X main.Date=${DATE}" -o "dist/${{ env.APP_NAME }}-darwin-amd64" ./cmd
cd dist && sha256sum ${{ env.APP_NAME }}-darwin-amd64 > ${{ env.APP_NAME }}-darwin-amd64.sha256
- name: Build macOS arm64
working-directory: oho
env:
GOOS: darwin
GOARCH: arm64
run: |
mkdir -p dist
VERSION=${GITHUB_REF#refs/tags/} && \
COMMIT=${GITHUB_SHA::8} && \
DATE=$(date -u +%Y-%m-%dT%H:%M:%SZ) && \
go build -ldflags="-s -w -X main.Version=${VERSION} -X main.Commit=${COMMIT} -X main.Date=${DATE}" -o "dist/${{ env.APP_NAME }}-darwin-arm64" ./cmd
cd dist && sha256sum ${{ env.APP_NAME }}-darwin-arm64 > ${{ env.APP_NAME }}-darwin-arm64.sha256
- name: Upload Release Assets
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref_name }}
files: |
oho/dist/${{ env.APP_NAME }}-linux-amd64
oho/dist/${{ env.APP_NAME }}-linux-amd64.sha256
oho/dist/${{ env.APP_NAME }}-linux-arm64
oho/dist/${{ env.APP_NAME }}-linux-arm64.sha256
oho/dist/${{ env.APP_NAME }}-windows-amd64.exe
oho/dist/${{ env.APP_NAME }}-windows-amd64.exe.sha256
oho/dist/${{ env.APP_NAME }}-darwin-amd64
oho/dist/${{ env.APP_NAME }}-darwin-amd64.sha256
oho/dist/${{ env.APP_NAME }}-darwin-arm64
oho/dist/${{ env.APP_NAME }}-darwin-arm64.sha256
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# ===========================================
# Job 5: 多平台安装脚本测试
# ===========================================
install-test:
name: Install Test (${{ matrix.goos }}-${{ matrix.goarch }})
runs-on: ${{ matrix.runs-on }}
needs: [build]
strategy:
fail-fast: false
matrix:
include:
# linux-amd64: runs-on ubuntu-latest (x86_64) ✓
- goos: linux
goarch: amd64
runs-on: ubuntu-latest
artifact: oho-linux-amd64
# darwin-amd64: runs-on macos-latest (x86_64) ✓
- goos: darwin
goarch: amd64
runs-on: macos-latest
artifact: oho-darwin-amd64
# windows-amd64: runs-on windows-latest ✓
- goos: windows
goarch: amd64
runs-on: windows-latest
artifact: oho-windows-amd64
# darwin-arm64: runs-on macos-latest (macos-13 Intel) 需要单独 runner,暂不支持
# linux-arm64: runs-on ubuntu-latest (x86_64) 无法运行 ARM64 二进制,暂不支持
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: ${{ matrix.artifact }}
path: ./bin
- name: Verify Linux/macOS binary
if: matrix.goos != 'windows'
run: |
bin_path="./bin/${{ matrix.artifact }}"
chmod +x "$bin_path"
echo "Testing: $bin_path"
"$bin_path" --version
- name: Verify Windows binary
if: matrix.goos == 'windows'
shell: pwsh
run: |
$bin = ".\bin\${{ matrix.artifact }}.exe"
echo "Testing: $bin"
& $bin --version
# ===========================================
# Job 6: 通知 (发布成功后)
# ===========================================
notify:
name: Notify
runs-on: ubuntu-latest
needs: [release]
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Create GitHub Release summary
run: |
echo "## 🎉 Release Published" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "**Version:** ${{ github.ref_name }}" >> $GITHUB_STEP_SUMMARY
echo "**Commit:** ${{ github.sha }}" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "### Downloads" >> $GITHUB_STEP_SUMMARY
echo "- [Release Page](${{ github.server_url }}/${{ github.repository }}/releases/tag/${{ github.ref_name }})" >> $GITHUB_STEP_SUMMARY