File tree Expand file tree Collapse file tree 2 files changed +27
-4
lines changed Expand file tree Collapse file tree 2 files changed +27
-4
lines changed Original file line number Diff line number Diff line change
1
+ name : Rust-linux
2
+ on : [push, pull_request]
3
+ env :
4
+ CARGO_TERM_COLOR : always
5
+ RUSTC_WRAPPER : sccache
6
+ SCCACHE_GHA_ENABLED : " true"
7
+ jobs :
8
+ build :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@v4
12
+ - name : Run sccache-cache
13
+ uses :
mozilla-actions/[email protected]
14
+ - name : Install glib/gtk dev
15
+ run : sudo apt install -y libgtk-4-dev libgstreamer1.0-dev libdiscid-dev
16
+ - name : Build
17
+ run : cargo build
18
+ - name : Run tests
19
+ run : cargo test
20
+ - uses : actions/upload-artifact@v4
21
+ with :
22
+ name : ripperx4
23
+ path : target/debug/ripperx4
Original file line number Diff line number Diff line change 1
- name : Rust
1
+ name : Rust-macOS
2
2
on : [push, pull_request]
3
3
env :
4
4
CARGO_TERM_COLOR : always
8
8
build :
9
9
runs-on : macos-latest
10
10
steps :
11
- - uses : actions/checkout@v3
11
+ - uses : actions/checkout@v4
12
12
- name : Run sccache-cache
13
- uses :
mozilla-actions/[email protected] .3
13
+ uses :
mozilla-actions/[email protected] .4
14
14
- name : Install glib/gtk dev
15
15
run : brew install gtk4 gstreamer libdiscid sccache
16
16
- name : Build
17
17
run : cargo build
18
18
- name : Run tests
19
19
run : cargo test
20
- - uses : actions/upload-artifact@v3
20
+ - uses : actions/upload-artifact@v4
21
21
with :
22
22
name : ripperx4
23
23
path : target/debug/ripperx4
You can’t perform that action at this time.
0 commit comments