-
Notifications
You must be signed in to change notification settings - Fork 94
154 lines (151 loc) · 5.63 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
name: Continuous Integration
on:
pull_request:
types: [labeled]
push:
branches: [Develop, main-net-runtime]
env:
RUNNER_INSTANCE_TYPE: c5d.4xlarge
jobs:
start-runner:
name: Start self-hosted EC2 runner
# Run the job only if it has proper label or it is triggered by the push to the dev or main branch.
if: |
contains(github.event.pull_request.labels.*.name, 'A0-PleaseReview') ||
contains(github.event_name, 'push')
runs-on: ubuntu-latest
outputs:
label: ${{ steps.start-ec2-runner.outputs.label }}
ec2-instance-id: ${{ steps.start-ec2-runner.outputs.ec2-instance-id }}
steps:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}
- name: Start EC2 runner
id: start-ec2-runner
uses: machulav/ec2-github-runner@v2
with:
mode: start
github-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN_REPO }}
ec2-image-id: ami-06de69a4185c962ed
ec2-instance-type: ${{ env.RUNNER_INSTANCE_TYPE }}
subnet-id: subnet-a4d326e8
security-group-id: sg-078363c0f7b5f0b41
iam-role-name: github-runner-role
aws-resource-tags: >
[
{"Key": "Name", "Value": "github-runner"},
{"Key": "GitHubRepository", "Value": "${{ github.repository }}"}
]
build:
name: Build | Run linters | Run tests
needs: start-runner
runs-on: ${{ needs.start-runner.outputs.label }}
steps:
- name: Set home environment variable # bug self hosted https://github.com/actions-rs/toolchain/issues/137
run: |
echo "HOME=/root" >> ${GITHUB_ENV} # bug
- name: Install dependencies
run: |
cat /etc/issue
apt update
apt install -y clang lldb lld gcc zip protobuf-compiler build-essential curl libssl-dev
- name: Install latest nightly with wasm target
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
target: wasm32-unknown-unknown
default: true
components: rustfmt, clippy
- name: Install .toml files linter
run: cargo install taplo-cli
- name: Checkout to the current branch
uses: actions/checkout@v3
- name: Cache Rust Dependencies
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Check versions info
run: |
rustup -V
cargo fmt -- --version
cargo clippy -V
- name: Lint .toml files
run: |
taplo lint
taplo fmt --check
- name: Build Project with try-runtime
run: cargo build --features try-runtime
- name: Runtime build
run: cargo build -p node-polkadex-runtime
- name: Build Project with runtime benchmarks
run: cargo build --features runtime-benchmarks
- name: Test weights generation
run: ./target/debug/polkadex-node benchmark pallet --pallet "*" --extrinsic "*" --steps 2 --repeat 1
- name: Normal Build in release mode
if: contains(github.ref, 'Develop')
run: RUSTFLAGS="-D warnings" cargo build --release
- name: Normal Build
if: "!(contains(github.ref, 'Develop'))"
run: RUSTFLAGS="-D warnings" cargo build
- name: Check Formatting
run: cargo fmt --check
- name: Check Clippy
run: cargo clippy -- -D warnings
- name: Test Project
run: cargo test --workspace
- name: Run Cargo Tarpaulin
uses: actions-rs/tarpaulin@v0.1
with:
version: '0.22.0'
args: '--avoid-cfg-tarpaulin --exclude polkadex-node node-polkadex-runtime --workspace --timeout 180'
- name: Upload to codecov.io
uses: codecov/codecov-action@v3
with:
token: ${{secrets.CODECOV_TOKEN}}
fail_ci_if_error: true
- name: Archive code coverage results
if: github.event_name == 'push'
uses: actions/upload-artifact@v1
with:
name: code-coverage-report
path: cobertura.xml
- name: Zip compiled binaries
if: contains(github.ref, 'Develop')
# Zipping is required since billing is based on the raw uploaded size.
run: zip -r -j polkadex-node.zip ./target/release/polkadex-node
- name: Upload zipped binaries as an artifact
if: contains(github.ref, 'Develop')
uses: actions/upload-artifact@v3
with:
name: polkadex-node
path: ./polkadex-node.zip
if-no-files-found: error
stop-runner:
name: Stop self-hosted EC2 runner
needs:
- start-runner
- build
runs-on: ubuntu-latest
if: ${{ always() }} # required to stop the runner even if the error happened in the previous jobs
steps:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}
- name: Stop EC2 runner
uses: machulav/ec2-github-runner@v2
with:
mode: stop
github-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN_REPO }}
label: ${{ needs.start-runner.outputs.label }}
ec2-instance-id: ${{ needs.start-runner.outputs.ec2-instance-id }}