File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010 CARGO_TERM_COLOR : always
1111
1212jobs :
13- build :
1413
15- runs-on : ubuntu-latest
14+ linux :
15+ runs-on : ubuntu-latest
16+ steps :
17+ - uses : actions/checkout@v4
18+ - name : Build
19+ run : cargo build --verbose
1620
17- steps :
18- - uses : actions/checkout@v4
19- - name : Build
20- run : cargo build --verbose
21+ - uses : actions/upload-artifact@v4
22+ with :
23+ path : target/release/nestdbg
24+
25+ windows :
26+ runs-on : windows-latest
27+ steps :
28+ - uses : actions/checkout@v4
29+ - name : Build
30+ run : cargo build --verbose
31+
32+ - uses : actions/upload-artifact@v4
33+ with :
34+ path : target/release/nestdbg.exe
35+
36+ macOS :
37+ runs-on : macos-latest
38+ steps :
39+ - uses : actions/checkout@v4
40+ - name : Build
41+ run : cargo build --verbose
42+
43+ - uses : actions/upload-artifact@v4
44+ with :
45+ path : target/release/nestdbg
You can’t perform that action at this time.
0 commit comments