Commit 0e45015 1 parent 59904f8 commit 0e45015 Copy full SHA for 0e45015
File tree 1 file changed +14
-2
lines changed
1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -16,18 +16,30 @@ jobs:
16
16
steps :
17
17
- uses : actions/checkout@v4
18
18
- uses : actions-rust-lang/setup-rust-toolchain@v1
19
- - name : Build
19
+ - name : Build (Debug)
20
20
run : cargo build --verbose
21
21
- name : Run tests
22
22
run : cargo test --verbose
23
+ - name : Build (release)
24
+ run : cargo build --target x86_64-unknown-linux-gnu
25
+ - uses : actions/upload-artifact@v4
26
+ with :
27
+ name : Linux Build
28
+ path : target/x86_64-unknown-linux-gnu/release/rtracy
23
29
24
30
build-windows :
25
31
runs-on : windows-latest
26
32
27
33
steps :
28
34
- uses : actions/checkout@v4
29
35
- uses : actions-rust-lang/setup-rust-toolchain@v1
30
- - name : Build
36
+ - name : Build (Debug)
31
37
run : cargo build --verbose
32
38
- name : Run tests
33
39
run : cargo test --verbose
40
+ - name : Build (release)
41
+ run : cargo build --target x86_64-pc-windows-msvc
42
+ - uses : actions/upload-artifact@v4
43
+ with :
44
+ name : Windows Build
45
+ path : target/x86_64-pc-windows-msvc/release/rtracy.exe
You can’t perform that action at this time.
0 commit comments