forked from haesookimDev/xgen-sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
220 lines (185 loc) · 6.07 KB
/
ci.yml
File metadata and controls
220 lines (185 loc) · 6.07 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
209
210
211
212
213
214
215
216
217
218
219
220
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
if: github.repository == 'haesookimDev/xgen-sandbox'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.26'
- name: Lint agent
run: cd agent && go vet ./...
- name: Lint sidecar
run: cd sidecar && go vet ./...
test:
if: github.repository == 'haesookimDev/xgen-sandbox'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.26'
- name: Test agent
run: cd agent && go test -race -coverprofile=coverage-agent.out -v ./...
- name: Test sidecar
run: cd sidecar && go test -race -coverprofile=coverage-sidecar.out -v ./...
- name: Upload coverage
uses: actions/upload-artifact@v4
with:
name: coverage
path: |
agent/coverage-agent.out
sidecar/coverage-sidecar.out
dashboard-lint:
if: github.repository == 'haesookimDev/xgen-sandbox'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm
cache-dependency-path: dashboard/package-lock.json
- name: Install dependencies
run: cd dashboard && npm ci
- name: Type check
run: cd dashboard && npx tsc --noEmit
- name: Lint
run: cd dashboard && npx eslint .
sdk-check:
if: github.repository == 'haesookimDev/xgen-sandbox'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Build TypeScript SDK
run: cd sdks/typescript && npm install && npm run build
- uses: actions/setup-go@v5
with:
go-version: '1.26'
- name: Vet Go SDK
run: cd sdks/go && go vet ./...
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Check Python SDK
run: cd sdks/python && pip install -e ".[dev]" 2>/dev/null || pip install -e . && python -c "import xgen_sandbox; print('Python SDK OK')"
build:
if: github.repository == 'haesookimDev/xgen-sandbox'
runs-on: ubuntu-latest
needs: [lint, test, dashboard-lint, sdk-check]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.26'
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm
cache-dependency-path: dashboard/package-lock.json
- name: Build agent
run: cd agent && go build -o ../bin/agent ./cmd/agent
- name: Build sidecar
run: cd sidecar && go build -o ../bin/sidecar ./cmd/sidecar
- name: Build dashboard
run: cd dashboard && npm ci && npm run build
docker:
runs-on: ubuntu-latest
needs: [build]
if: github.repository == 'haesookimDev/xgen-sandbox' && github.event_name == 'push' && github.ref == 'refs/heads/main'
permissions:
packages: write
security-events: write
env:
REGISTRY_IMAGE: ghcr.io/${{ github.repository }}
steps:
- uses: actions/checkout@v4
- name: Lowercase registry image name
run: echo "REGISTRY_IMAGE=${REGISTRY_IMAGE,,}" >> "$GITHUB_ENV"
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build agent image
uses: docker/build-push-action@v6
with:
context: ./agent
load: true
tags: ${{ env.REGISTRY_IMAGE }}/agent:${{ github.sha }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Build sidecar image
uses: docker/build-push-action@v6
with:
context: ./sidecar
load: true
tags: ${{ env.REGISTRY_IMAGE }}/sidecar:${{ github.sha }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Build dashboard image
uses: docker/build-push-action@v6
with:
context: ./dashboard
load: true
tags: ${{ env.REGISTRY_IMAGE }}/dashboard:${{ github.sha }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Scan agent image
uses: aquasecurity/trivy-action@v0.35.0
with:
image-ref: ${{ env.REGISTRY_IMAGE }}/agent:${{ github.sha }}
format: table
exit-code: '1'
severity: CRITICAL,HIGH
- name: Scan sidecar image
uses: aquasecurity/trivy-action@v0.35.0
with:
image-ref: ${{ env.REGISTRY_IMAGE }}/sidecar:${{ github.sha }}
format: table
exit-code: '1'
severity: CRITICAL,HIGH
- name: Scan dashboard image
uses: aquasecurity/trivy-action@v0.35.0
with:
image-ref: ${{ env.REGISTRY_IMAGE }}/dashboard:${{ github.sha }}
format: table
exit-code: '1'
severity: CRITICAL,HIGH
- name: Push agent image
uses: docker/build-push-action@v6
with:
context: ./agent
push: true
tags: |
${{ env.REGISTRY_IMAGE }}/agent:latest
${{ env.REGISTRY_IMAGE }}/agent:${{ github.sha }}
cache-from: type=gha
- name: Push sidecar image
uses: docker/build-push-action@v6
with:
context: ./sidecar
push: true
tags: |
${{ env.REGISTRY_IMAGE }}/sidecar:latest
${{ env.REGISTRY_IMAGE }}/sidecar:${{ github.sha }}
cache-from: type=gha
- name: Push dashboard image
uses: docker/build-push-action@v6
with:
context: ./dashboard
push: true
tags: |
${{ env.REGISTRY_IMAGE }}/dashboard:latest
${{ env.REGISTRY_IMAGE }}/dashboard:${{ github.sha }}
cache-from: type=gha