-
-
Notifications
You must be signed in to change notification settings - Fork 4
82 lines (67 loc) · 1.8 KB
/
rust.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: Rust
on:
push:
paths:
- shell/**
branches: [ "main" ]
pull_request:
paths:
- shell/**
branches: [ "main" ]
merge_group:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build-bin:
name: Build hlshell [bin] [dev]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rust-src, llvm-tools-preview
- name: Install bootimage
working-directory: shell
run: cargo install bootimage
- name: Build hlshell [bin] [dev]
working-directory: shell
run: cargo bootimage
build-bin-re:
name: Build hlshell [bin] [release]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rust-src, llvm-tools-preview
- name: Install bootimage
working-directory: shell
run: cargo install bootimage
- name: Build hlshell [bin] [release]
working-directory: shell
run: cargo +nightly bootimage --release
lints:
name: hlshell Lints
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install latest nightly
uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly
override: true
components: rust-src, rustfmt, clippy
- name: Run cargo fmt on hlshell
working-directory: shell
run: cargo fmt --all --check
- name: Run cargo clippy on hlshell
working-directory: shell
run: cargo clippy