-
Notifications
You must be signed in to change notification settings - Fork 3
95 lines (76 loc) · 2.43 KB
/
ci.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
name: CI
on:
push:
branches:
- master
pull_request:
branches: [master]
workflow_dispatch:
env:
CARGO_NET_GIT_FETCH_WITH_CLI: true
jobs:
# 5irechain linting(fmt + clippy)
lint_and_test_and_integration_test:
runs-on: self-hosted
steps:
- name: Checkout sources
uses: actions/checkout@v3
with:
token: ${{ github.token }}
submodules: recursive
- name: Install toolchain
uses: dtolnay/rust-toolchain@nightly
with:
toolchain: 1.74.0
targets: wasm32-unknown-unknown
components: rustfmt
- name: Rust cache
uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- uses: webfactory/ssh-agent@v0.5.4
with:
ssh-private-key: "${{ secrets.READ_DEPLOY_KEY }}"
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: "3.9.1"
- name: Install Protobuf and Libclang
run: sudo apt-get install -y protobuf-compiler libclang-dev
- name: Check format
run: cargo +nightly fmt --all --check
- name: Add Cargo Clippy
run: rustup component add clippy
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.3
- name: Configure sccache
run: |
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
- name: Check
run: cargo check --features all
- name: Build Node for Integration Tests (Release)
run: cargo build --release --features firechain-qa
- name: Install Nodejs
uses: actions/setup-node@v3
with:
cache: "yarn"
cache-dependency-path: "./integration-test-suite/yarn.lock"
- name: Install Packages
run: cd integration-test-suite && yarn install --frozen-lockfile
- name: Run Integration Tests
#if: github.event.pull_request.merged == true
run: cd integration-test-suite && yarn test
- name: Test
run: cargo test --features firechain-qa
# - name: Clippy
# run: cargo clippy --features all -- -D warnings
- name: Save Cache
if: ${{ !cancelled() }}
uses: actions/cache/save@v3
with:
path: |
~/.cargo/registry
target/release
target/debug
key: ${{ runner.os }}-cargo-index-${{ github.ref_name }}-integration-tests