-
Notifications
You must be signed in to change notification settings - Fork 25
109 lines (94 loc) · 2.67 KB
/
check.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
name: CI
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
check_nss:
name: NSS Build
runs-on: ubuntu-latest
env:
RUSTFLAGS: -C link-arg=-fuse-ld=lld
NSS_DIR: ${{ github.workspace }}/nss
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Install Build Prerequisites for NSS
run: |
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y \
build-essential \
ca-certificates \
clang \
coreutils \
curl \
git \
gyp \
libclang-dev \
libssl-dev \
lld \
llvm \
make \
mercurial \
ninja-build \
pkg-config \
ssh \
zlib1g-dev \
--no-install-recommends
- name: Fetch NSS and NSPR
run: |
hg clone https://hg.mozilla.org/projects/nspr "$NSS_DIR"/../nspr
git clone --depth 1 https://github.com/nss-dev/nss "$NSS_DIR"
- uses: actions-rs/cargo@v1
name: Build
with:
command: build
args: --tests --no-default-features --features nss,client,server
- uses: actions-rs/cargo@v1
name: Run Tests
with:
command: test
args: --no-default-features --features nss,client,server
env:
LD_LIBRARY_PATH: ${{ github.workspace }}/dist/Debug/lib
- uses: actions-rs/cargo@v1
name: Check formatting
if: ${{ success() || failure() }}
with:
command: fmt
args: --all -- --check --config imports_granularity=Crate
- uses: actions-rs/cargo@v1
name: Clippy
if: ${{ success() || failure() }}
with:
command: clippy
args: --tests --no-default-features --features nss,client,server
check_rust_hpke:
name: rust-hpke Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
name: Build
with:
command: build
args: --tests
- uses: actions-rs/cargo@v1
name: Run Tests
with:
command: test
- uses: actions-rs/cargo@v1
name: Check formatting
if: ${{ success() || failure() }}
with:
command: fmt
args: --all -- --check --config imports_granularity=Crate
- uses: actions-rs/cargo@v1
name: Clippy
if: ${{ success() || failure() }}
with:
command: clippy
args: --tests