-
Notifications
You must be signed in to change notification settings - Fork 157
119 lines (98 loc) · 2.62 KB
/
check-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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
name: Rust build, benchmarks, and tests
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
##
on:
##
# Run automatically for any push that changes Rust file(s)
push:
branches:
- main
- $default-branch
paths:
- "**.rs"
- "**/Cargo.toml"
- "**/Cargo.lock"
##
# Run automatically for PRs against default/main branch if Rust files change
pull_request:
branches:
- main
- $default-branch
paths:
- "**.rs"
- "**/Cargo.toml"
- "**/Cargo.lock"
## Allow running workflow manually from the Actions tab
workflow_dispatch:
inputs:
verbose:
description: "Output more information when triggered manually"
required: false
default: ""
##
env:
CARGO_TERM_COLOR: always
VERBOSE: ${{ github.events.input.verbose }}
##
#
jobs:
check:
name: Tests targeting ${{ matrix.rust-target }} for OS ${{ matrix.os }}
runs-on: ${{ matrix.os }}
##
# Define multiple targets for builds and tests
strategy:
matrix:
rust-branch:
- nightly-2023-01-18
rust-target:
- x86_64-unknown-linux-gnu
# - x86_64-apple-darwin
os:
- ubuntu-latest
# - macos-latest
include:
- os: ubuntu-latest
# - os: macos-latest
##
env:
RELEASE_NAME: development
RUSTFLAGS: -A warnings
RUSTV: ${{ matrix.rust-branch }}
RUST_BACKTRACE: full
RUST_BIN_DIR: target/${{ matrix.rust-target }}
SKIP_WASM_BUILD: 1
TARGET: ${{ matrix.rust-target }}
##
steps:
- name: Check-out repository under $GITHUB_WORKSPACE
uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt update &&
sudo apt install -y git clang curl libssl-dev llvm libudev-dev protobuf-compiler
- name: Install Rust ${{ matrix.rust-branch }}
uses: actions-rs/[email protected]
with:
toolchain: ${{ matrix.rust-branch }}
profile: minimal
- name: Utilize Rust shared cached
uses: Swatinem/[email protected]
with:
key: ${{ matrix.os }}-${{ env.RUST_BIN_DIR }}
## TODO: maybe use `if` conditions in tests to target `--package <name>`
- name: Run tests
# timeout-minutes: 30
run: |
cargo test --tests
- name: Run benchmarks
# timeout-minutes: 30
run: |
pushd node &&
cargo build --features=runtime-benchmarks --release
- name: Build executable
# timeout-minutes: 30
run: |
cargo build --release