File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 19
19
jobs :
20
20
lints :
21
21
name : Run cargo fmt and cargo clippy
22
- runs-on : ubuntu-latest
22
+ runs-on : manjarolinux/build
23
23
steps :
24
24
- name : Checkout sources
25
25
uses : actions/checkout@v2
31
31
components : rustfmt, clippy
32
32
override : true
33
33
- name : Install Dependancies
34
- run : sudo apt-get install -y libglib2.0-dev
34
+ run : sudo pacman -Syu libglib2.0-dev
35
35
- name : Run cargo fmt
36
36
uses : actions-rs/cargo@v1
37
37
with :
44
44
args : --all-features -- -D warnings
45
45
build-linux :
46
46
name : Build for linux using cargo
47
- runs-on : ubuntu-latest
47
+ runs-on : manjarolinux/build
48
48
needs : [lints]
49
49
steps :
50
50
- name : Checkout sources
64
64
args : --verbose --target x86_64-unknown-linux-gnu
65
65
test :
66
66
name : Run cargo test
67
- runs-on : ubuntu-latest
67
+ runs-on : manjarolinux/build
68
68
needs : [build-linux]
69
69
steps :
70
70
- name : Checkout sources
89
89
args : --verbose
90
90
coverage :
91
91
name : Attempt to generate code coverage
92
- runs-on : ubuntu-latest
92
+ runs-on : manjarolinux/build
93
93
needs : [test]
94
94
steps :
95
95
- name : Checkout sources
You can’t perform that action at this time.
0 commit comments