-
Notifications
You must be signed in to change notification settings - Fork 2
196 lines (174 loc) · 5.58 KB
/
backend.yml
File metadata and controls
196 lines (174 loc) · 5.58 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
name: Rust Backend CI
on:
push:
branches: ["dev"]
pull_request:
branches: ["dev"]
release:
types:
- published # 当发布版本时触发
env:
CARGO_TERM_COLOR: always
BINARY_NAME: backend
DATABASE_URL: ${{ secrets.DATABASE_URL }}
SQLX_OFFLINE: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Cache Rust dependencies
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
backend/target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Cache SQLx metadata
uses: actions/cache@v3
with:
path: backend/.sqlx
key: ${{ runner.os }}-sqlx-${{ hashFiles('**/*.rs', '**/migrations/**') }}
restore-keys: ${{ runner.os }}-sqlx-
- name: Install SQLx CLI
run: cargo install sqlx-cli --no-default-features --features postgres
- name: Prepare SQLx metadata
run: |
cd backend
cargo sqlx prepare -- --tests
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}
SQLX_OFFLINE: true
- name: Run tests
run: cd backend && cargo test --verbose
build:
name: Build ${{ matrix.target.name }}
needs: test
runs-on: ${{ matrix.target.os }}
strategy:
fail-fast: false
matrix:
target:
- name: Linux x86_64
os: ubuntu-latest
target: x86_64-unknown-linux-gnu
bin: backend
asset_name: backend-linux-amd64
- name: Linux ARM64
os: ubuntu-latest
target: aarch64-unknown-linux-gnu
bin: backend
asset_name: backend-linux-arm64
- name: Windows
os: windows-latest
target: x86_64-pc-windows-msvc
bin: backend.exe
asset_name: backend-windows-amd64.exe
steps:
- uses: actions/checkout@v4
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: ${{ matrix.target.target }}
override: true
- name: Cache Rust dependencies
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
backend/target
key: ${{ runner.os }}-${{ matrix.target.target }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-${{ matrix.target.target }}-cargo-
- name: Cache SQLx metadata
uses: actions/cache@v3
with:
path: backend/.sqlx
key: ${{ runner.os }}-sqlx-${{ hashFiles('**/*.rs', '**/migrations/**') }}
restore-keys: ${{ runner.os }}-sqlx-
- name: Install SQLx CLI
run: cargo install sqlx-cli --no-default-features --features postgres
- name: Prepare SQLx metadata
run: |
cd backend
cargo sqlx prepare -- --tests
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}
SQLX_OFFLINE: true
- name: Build release binary
run: |
cd backend
cargo build --release --target ${{ matrix.target.target }}
- name: Prepare binary
shell: bash
run: |
cd backend
mkdir -p release
cp target/${{ matrix.target.target }}/release/${{ matrix.target.bin }} release/${{ matrix.target.asset_name }}
- name: Upload binary as artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.target.asset_name }}
path: backend/release/${{ matrix.target.asset_name }}
if-no-files-found: error
update-release-notes:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Extract release notes
id: extract-release-notes
uses: ffurrer2/extract-release-notes@v2
- uses: softprops/action-gh-release@v2
with:
body: |-
${{ steps.extract-release-notes.outputs.release_notes }}
| File | SHA256 |
| ---- | ------ |
upload-to-release:
needs:
- build
- update-release-notes
permissions:
contents: write
runs-on: ubuntu-latest
strategy:
matrix:
mode:
- debug
- release
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: ${{ matrix.target.asset_name }}
path: artifact
- run: |
zip -r ../${{ matrix.asset_name }} *
working-directory: artifact
- id: calculate-sha256
run: |
echo sha256=$(sha256sum ${{ matrix.asset_name }} | awk '{print $1}') >> $GITHUB_OUTPUT
- uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.version.outputs.version }}
name: ${{ steps.version.outputs.version }}
body: |
${{ github.event.release.body }}
## Checksums
${{ steps.checksums.outputs.HASHES }}
files: artifacts/*
generate_release_notes: false # 添加了这一行
if: ${{ github.event_name == 'release' }}