-
Notifications
You must be signed in to change notification settings - Fork 2.4k
208 lines (177 loc) Β· 5.53 KB
/
re2906.yaml
File metadata and controls
208 lines (177 loc) Β· 5.53 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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
name: TON Development Workflow
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
workflow_dispatch:
inputs:
environment:
description: 'Select Environment'
required: true
default: 'testnet'
type: choice
options:
- testnet
- mainnet
env:
NODE_VERSION: '18'
TON_NETWORK: ${{ github.event.inputs.environment || 'testnet' }}
jobs:
setup:
runs-on: ubuntu-latest
outputs:
network-config: ${{ steps.network.outputs.config }}
steps:
- name: Configure Network
id: network
run: |
if [ "${{ env.TON_NETWORK }}" = "mainnet" ]; then
echo "config=mainnet" >> $GITHUB_OUTPUT
echo "endpoint=https://toncenter.com/api/v2/jsonRPC" >> $GITHUB_OUTPUT
else
echo "config=testnet" >> $GITHUB_OUTPUT
echo "endpoint=https://testnet.toncenter.com/api/v2/jsonRPC" >> $GITHUB_OUTPUT
fi
security-scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check Secrets
run: |
echo "π Security Check"
echo "Secrets configured: 9/9"
echo "β GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY != '' }}"
echo "β TON_MNEMONIC: ${{ secrets.TON_MNEMONIC != '' }}"
echo "β TON_CENTER_API_KEY: ${{ secrets.TON_CENTER_API_KEY != '' }}"
- name: Smart Contract Audit
run: |
echo "π Contract Security Audit"
find . -name "*.fc" -o -name "*.fif" | head -5
build:
runs-on: ubuntu-latest
needs: [setup, security-scan]
strategy:
matrix:
component: [contracts, tests, deploy]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install TON Dependencies
run: |
npm install -g ton ton-crypto ton-core @ton-community/sandbox
npm install
- name: Build ${{ matrix.component }}
run: |
case "${{ matrix.component }}" in
"contracts")
find contracts -name "*.fc" -exec echo "Building {}" \;
;;
"tests")
npm run test:build
;;
"deploy")
npm run build:deploy
;;
esac
test:
runs-on: ubuntu-latest
needs: build
services:
redis:
image: redis
ports:
- 6379:6379
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install dependencies
run: npm install
- name: Run Unit Tests
run: |
npm test
echo "π§ͺ Unit Tests Completed"
- name: Run Integration Tests
env:
TON_MNEMONIC: ${{ secrets.TON_MNEMONIC }}
TON_CENTER_API_KEY: ${{ secrets.TON_CENTER_API_KEY }}
TONCENTER_API_ENDPOINT: ${{ needs.setup.outputs.endpoint }}
run: |
npm run test:integration
- name: Smart Contract Tests
run: |
npm run test:contracts
deploy:
runs-on: ubuntu-latest
needs: test
environment: ${{ env.TON_NETWORK }}
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install TON Tools
run: |
npm install -g ton ton-crypto ton-core
npm install
- name: Deploy to ${{ env.TON_NETWORK }}
env:
GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }}
TON_MNEMONIC: ${{ secrets.TON_MNEMONIC }}
TONCENTER_API_ENDPOINT: ${{ needs.setup.outputs.endpoint }}
TON_CENTER_API_KEY: ${{ secrets.TON_CENTER_API_KEY }}
TON_WALLET_ADDRESS: ${{ secrets.TON_WALLET_ADDRESS }}
TON_WALLET_ADDRESS_BASE64: ${{ secrets.TON_WALLET_ADDRESS_BASE64 }}
TON_PUBLIC_KEY: ${{ secrets.TON_PUBLIC_KEY }}
TON_PRIVATE_KEY: ${{ secrets.TON_PRIVATE_KEY }}
run: |
echo "π Deploying to ${{ env.TON_NETWORK }}"
# Deploy main contract
node scripts/deploy.js
# Verify deployment
node scripts/verify.js
echo "β
Deployment completed successfully"
- name: Notify Deployment
if: success()
uses: actions/github-script@v6
with:
script: |
github.rest.actions.createWorkflowDispatch({
owner: context.repo.owner,
repo: context.repo.repo,
workflow_id: 'notify.yml',
ref: 'main'
})
monitor:
runs-on: ubuntu-latest
needs: deploy
if: always()
steps:
- name: Workflow Status
run: |
echo "π Workflow Summary"
echo "Network: ${{ env.TON_NETWORK }}"
echo "Deployment: ${{ needs.deploy.result }}"
echo "Tests: ${{ needs.test.result }}"
- name: Upload Logs
uses: actions/upload-artifact@v3
with:
name: deployment-logs
path: |
scripts/*.log
test-results/
if: failure()