-
Notifications
You must be signed in to change notification settings - Fork 9
177 lines (152 loc) · 6.34 KB
/
grid_client_nightly.yml
File metadata and controls
177 lines (152 loc) · 6.34 KB
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# This workflow will install needed dependencies and run main grid tests.
name: Grid Client Nightly
on:
schedule:
- cron: "0 4 * * *"
workflow_dispatch:
permissions:
contents: read
issues: write
jobs:
deployment-scripts:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
network: ["dev", "qa", "test", "main"]
env:
NETWORK: ${{ matrix.network }}
RMB_PROXY: true
STORE_SECRET: secret
MNEMONIC: ${{ secrets.MNEMONIC }}
SSH_KEY: ${{ secrets.SSH_KEY }}
steps:
- uses: actions/checkout@v4
if: ${{ env.NETWORK == 'dev' }}
- uses: actions/checkout@v4
if: ${{ env.NETWORK == 'qa' }}
with:
ref: refs/tags/v2.8.2
- uses: actions/checkout@v4
if: ${{ env.NETWORK == 'test' }}
with:
ref: refs/tags/v2.8.2
- uses: actions/checkout@v4
if: ${{ env.NETWORK == 'main' }}
with:
ref: refs/tags/v2.8.2
- name: Set up node 22 lts
uses: actions/setup-node@v4
with:
node-version: 22.15
cache: "yarn"
- name: Install deps
run: |
sudo apt-get update
sudo apt-get install -y git libtool tmux redis net-tools gh
- name: Install
run: |
yarn
make build
- name: Run test dynamic single vm
id: single_vm
if: always()
run: |
yarn run ts-node --transpileOnly --project packages/grid_client/tsconfig-node.json packages/grid_client/scripts/dynamic_single_vm.ts
- name: Run test Zos 3 lite gateway
id: zos3lite_gateway_domain
if: always()
run: |
yarn run ts-node --transpileOnly --project packages/grid_client/tsconfig-node.json packages/grid_client/scripts/zos3lite_gateway_domain.ts
- name: Run test single ZOS3 lite vm with mycelium
id: zos3lite
if: always()
run: |
yarn run ts-node --transpileOnly --project packages/grid_client/tsconfig-node.json packages/grid_client/scripts/single_vm_zos3_lite.ts
- name: Run test multiple vms
id: multiple_vm
if: always()
run: |
yarn run ts-node --transpileOnly --project packages/grid_client/tsconfig-node.json packages/grid_client/scripts/multiple_vms.ts
- name: Run test multiple zos3 lite vms
id: multiple_zos3_lite_vm
if: always()
run: |
yarn run ts-node --transpileOnly --project packages/grid_client/tsconfig-node.json packages/grid_client/scripts/multiple_vms_zos_3_lite.ts
- name: Run test kubernetes
id: k8s
if: always()
run: |
yarn run ts-node --transpileOnly --project packages/grid_client/tsconfig-node.json packages/grid_client/scripts/orchestrators/kubernetes_leader.ts
- name: Run test vm with qsfs
id: vmqsfs
if: false
continue-on-error: true
run: |
yarn run ts-node --transpileOnly --project packages/grid_client/tsconfig-node.json packages/grid_client/scripts/vm_with_qsfs.ts
- name: Run test kubernetes with qsfs
id: k8sqsfs
if: false
continue-on-error: true
run: |
yarn run ts-node --transpileOnly --project packages/grid_client/tsconfig-node.json packages/grid_client/scripts/orchestrators/kubernetes_with_qsfs.ts
- name: Run test kvstore
id: kvstore
if: always()
run: |
yarn run ts-node --transpileOnly --project packages/grid_client/tsconfig-node.json packages/grid_client/scripts/kvstore_example.ts
- name: Run test zdb
id: zdb
if: false
continue-on-error: true
run: |
yarn run ts-node --transpileOnly --project packages/grid_client/tsconfig-node.json packages/grid_client/scripts/zdb.ts
- name: Cleanup - Delete all contracts
if: always()
id: delete_all
run: |
yarn run ts-node --transpileOnly --project packages/grid_client/tsconfig-node.json packages/grid_client/scripts/delete_all_contracts.ts
- name: Run check up - List all contracts
run: |
sleep 15
yarn run ts-node --transpileOnly --project packages/grid_client/tsconfig-node.json packages/grid_client/scripts/list_all_contracts.ts > output.txt
- name: Check if contracts are Empty
run: |
# print the file content
cat output.txt
# Check if Node contracts are empty
if grep -q "nodeContracts: \[\]" output.txt && ! grep -q "nodeContracts: \[[[:space:]]*\]" output.txt; then
echo "Deletion failed; The Node Contract is not empty."
# Print the contract that couldn't be deleted
exit 1
fi
- name: Find issues
if: failure()
id: find-issues
env:
GH_TOKEN: ${{ github.token }}
run: |
ISSUE_COUNT=$(gh issue list --search "${{github.workflow}} failed during schedule on ${{ env.NETWORK }}" --json title --jq '. | length')
echo "issue_count=$ISSUE_COUNT" >> $GITHUB_ENV
- name: Create GitHub Issue on Failure
if: failure() && env.issue_count == '0'
uses: dacbd/create-issue-action@main
with:
token: ${{ github.token }}
title: ${{github.workflow}} failed during schedule on ${{ env.NETWORK }}
body: |
## Failure Report
> [!IMPORTANT]
> **Details on failed run**: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
- **Dynamic Single Vm**: ${{ steps.single_vm.outcome }}
- **ZOS3 Lite Mycelium**: ${{ steps.zos3lite.outcome }}
- **Multiple Vm**: ${{ steps.multiple_vm.outcome }}
- **Multiple Vm zos3 lite**: ${{ steps.multiple_zos3_lite_vm.outcome }}
- **zos3 lite gateway**: ${{ steps.zos3lite_gateway_domain.outcome }}
- **Kubernetes**: ${{ steps.k8s.outcome }}
- **Vmq QSFS**: skipped https://github.com/threefoldtech/tfgrid-sdk-ts/issues/3611
- **Kubernetes QSFS**: skipped https://github.com/threefoldtech/tfgrid-sdk-ts/issues/3611
- **Kvstore**: ${{ steps.kvstore.outcome }}
- **Zdb**: skipped https://github.com/threefoldtech/tfgrid-sdk-ts/issues/4167
- **Delete all contracts**: ${{ steps.delete_all.outcome }}
labels: type_bug, grid_client