We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c722591 commit 43e8a8bCopy full SHA for 43e8a8b
1 file changed
.github/workflows/win7-test.yml
@@ -0,0 +1,34 @@
1
+name: Win7 测试
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+env:
7
+ CARGO_TERM_COLOR: always
8
9
+jobs:
10
+ x64:
11
+ name: x64
12
+ runs-on: windows-latest
13
14
+ steps:
15
+ - name: 仓库初始化
16
+ uses: actions/checkout@v3
17
18
+ - name: 安装 Rust
19
+ run: |
20
+ rustup toolchain install nightly
21
+ rustup default nightly
22
+ rustup component add rust-src --toolchain nightly-x86_64-pc-windows-msvc
23
24
+ - name: 编译
25
26
+ cargo build --release -Z build-std --target x86_64-win7-windows-msvc
27
28
+ - name: 上传文件
29
+ uses: actions/upload-artifact@v4
30
+ with:
31
+ name: AppDataCleaner
32
+ path: |
33
+ target\x86_64-win7-windows-msvc\release\AppDataCleaner.exe
34
+ target\x86_64-win7-windows-msvc\release\AppDataCleaner.pdb
0 commit comments