-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (67 loc) · 2.18 KB
/
tests.yaml
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
name: Tests
on:
pull_request:
branches: [develop]
schedule:
- cron: "0 10 * * *"
jobs:
checks:
name: check
container:
image: ubuntu:20.04
runs-on: build-dedicated
steps:
- uses: actions/checkout@v2
- name: install dependencies
run: |
apt-get update
DEBIAN_FRONTEND=noninteractive apt-get -q -y install curl git libssl-dev libudev-dev make cmake pkg-config zlib1g-dev llvm clang protobuf-compiler
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.62.1
components: clippy
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -Dwarnings -A clippy::derive-partial-eq-without-eq
test:
name: test
runs-on: build-dedicated
steps:
- uses: actions/checkout@v2
- name: install dependencies
run: |
sudo apt-get update
DEBIAN_FRONTEND=noninteractive sudo apt-get -q -y install curl git libssl-dev libudev-dev make cmake pkg-config zlib1g-dev llvm clang protobuf-compiler
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.62.1
- name: Setting limits
run: |
sudo sysctl -w fs.file-max=5000000
sudo sysctl -w vm.max_map_count=5000000
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --workspace --exclude solana-local-cluster -j 16 --no-fail-fast
- name: Run Local cluster tests
uses: actions-rs/cargo@v1
with:
command: test
args: -p solana-local-cluster --test local_cluster -j 16 --no-fail-fast
- name: Run Local cluster flakey tests
uses: actions-rs/cargo@v1
with:
command: test
args: -p solana-local-cluster --test local_cluster_flakey -j 16 --no-fail-fast
- name: Run Local cluster slow tests
uses: actions-rs/cargo@v1
with:
command: test
args: -p solana-local-cluster --test local_cluster_slow -j 16 --no-fail-fast