-
Notifications
You must be signed in to change notification settings - Fork 59
139 lines (120 loc) · 3.93 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
name: CI
on:
push:
branches:
- 'master'
pull_request:
branches:
- '**'
types: [opened, synchronize]
schedule:
- cron: '0 0 * * *'
concurrency:
group: build-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Prettier and Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
path: matic-cli
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '16.17.1'
- name: Install npm dependencies
run: |
cd matic-cli
npm install --prefer-offline --no-audit --progress=false
- name: Run prettier
run: |
cd matic-cli
npm run prettier:check
- name: Run lint
run: |
cd matic-cli
npm run lint:check
integration-tests:
permissions:
id-token: write
contents: write
if: (github.event.action != 'closed' || github.event.pull_request.merged == true)
strategy:
matrix:
os: [ubuntu-20.04] # list of os: https://github.com/actions/virtual-environments
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
path: matic-cli
- name: Create .env file
run: |
cd matic-cli
cp .env.example .env
sed -i 's,YOUR_IDENTIFIER,matic-cli-ci,' .env
sed -i 's,aws-key,matic-cli-ci-key,' .env
sed -i 's,/absolute/path/to/your/,/home/runner/work/matic-cli/matic-cli/matic-cli/aws/,' .env
sed -i 's,MATIC_CLI_BRANCH=master,MATIC_CLI_BRANCH=${{ github.head_ref || github.ref_name }},' .env
- name: Get GitHub action runner IP
id: ip
uses: haythem/[email protected]
- name: Create secret.tfvars
run: |
cd matic-cli
touch secret.tfvars
echo "SG_CIDR_BLOCKS=[\"${{ steps.ip.outputs.ipv4 }}/32\"]" >> secret.tfvars
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@master
with:
aws-region: eu-west-1
role-to-assume: arn:aws:iam::${{ secrets.ACCOUNT_ID }}:role/MaticCLIGitHubActionsRole
role-session-name: GithubActionsSession
- name: Create aws key pair
run: |
cd matic-cli
mkdir aws
cd aws
aws ec2 create-key-pair --key-name matic-cli-ci-key --key-type rsa --key-format pem --query "KeyMaterial" --output text > matic-cli-ci-key.pem
chmod 700 matic-cli-ci-key.pem
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '16.17.1'
- name: Install npm dependencies
run: |
cd matic-cli
npm install --prefer-offline --no-audit --progress=false
- name: Init devnet
run: |
cd matic-cli
./bin/express-cli --init aws
- name: Start devnet
run: |
cd matic-cli/deployments/devnet-1
ls -la
../../bin/express-cli --start
- name: Run stateSynced and checkpoint tests
run: |
cd matic-cli/deployments/devnet-1
../../bin/express-cli --send-state-sync
timeout 20m ../../bin/express-cli --monitor exit
- name: Run smart contracts events tests
run: |
cd matic-cli/deployments/devnet-1
timeout 5m ../../bin/express-cli --send-staked-event 1
timeout 5m ../../bin/express-cli --send-stakeupdate-event 1
timeout 5m ../../bin/express-cli --send-topupfee-event 1
timeout 10m ../../bin/express-cli --send-unstakeinit-event 1
- name: Destroy devnet
if: always()
run: |
cd matic-cli/deployments/devnet-1
echo "Running --destroy"
../../bin/express-cli --destroy
- name: Delete aws key pair
if: always()
run: |
cd matic-cli/aws
aws ec2 delete-key-pair --key-name matic-cli-ci-key