-
Notifications
You must be signed in to change notification settings - Fork 1
214 lines (198 loc) · 5.92 KB
/
checks.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
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
name: Checks
on:
- push
- pull_request
- workflow_dispatch
jobs:
checks:
runs-on: ubuntu-latest
steps:
- run: sudo apt-get update && sudo apt-get install -y clang-format
- uses: actions/checkout@v4
with:
lfs: true
- uses: actions/setup-node@v4
with:
node-version: 20
- run: corepack enable
- uses: actions/cache@v3
with:
path: .yarn/cache
key: yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
yarn-
- uses: actions/cache@v3
with:
path: |
~/.zig-build
~/.cache/zig
key: zig-${{ hashFiles('yarn.lock') }}
restore-keys: |
zig-
- run: yarn install --immutable
- run: yarn build
- run: yarn lint
- run: yarn test
env:
TEST_SERVICE_KEY: ${{ secrets.TEST_SERVICE_KEY }}
TEST_COLLECTOR: ${{ secrets.TEST_COLLECTOR }}
# load bearing .root file
# actions/upload-artifact will make the archive root the topmost directory which contains all specified files
# we can force it to be the root of the repo by including an empty file present at the root
# see https://github.com/actions/upload-artifact#upload-using-multiple-paths-and-exclusions
- run: touch .root
- if: github.event_name == 'pull_request'
uses: actions/upload-artifact@v3
with:
name: build
path: |
.root
packages/**/dist/
packages/bindings/npm/*/*.node
packages/bindings/npm/*/liboboe.so
retention-days: 1
versions:
if: github.event_name == 'pull_request' && !contains(github.head_ref, 'release')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: true
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
- run: corepack enable
- uses: actions/cache@v3
with:
path: .yarn/cache
key: yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
yarn-
- run: yarn install --immutable
- run: yarn version check
launch-arm64:
if: github.event_name == 'pull_request'
outputs:
matrix: ${{ steps.launch.outputs.matrix }}
runs-on: ubuntu-latest
steps:
- uses: getsentry/action-github-app-token@v2
id: github-token
with:
app_id: ${{ vars.APPLICATION_ID }}
private_key: ${{ secrets.APPLICATION_PRIVATE_KEY }}
- uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.CI_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.CI_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- id: launch
uses: solarwinds/ec2-runner-action@main
with:
action: launch
github-token: ${{ steps.github-token.outputs.token }}
matrix: |
16-amazonlinux2023
16-debian10
16-ubi8
16-ubuntu20.04
18-amazonlinux
18-debian
18-ubi
18-ubuntu
20-amazonlinux
20-debian
20-ubi
20-ubuntu
runner-user: github
runner-directory: /gh
instance-type: t4g.medium
ami-name: gha-arm64-ubuntu22-.*
ami-owner: "858939916050"
subnet-id: subnet-0fd499f8a50e41807
security-group-ids: sg-0fd8d8cd6effda4a5
tests:
if: github.event_name == 'pull_request'
needs:
- checks
- launch-arm64
runs-on: ${{ matrix.arch == 'arm64' && fromJSON(needs.launch-arm64.outputs.matrix)[matrix.image].label || 'ubuntu-latest' }}
strategy:
matrix:
image:
- 16-alpine3.16
- 16-amazonlinux2023
- 16-debian10
- 16-ubi8
- 16-ubuntu20.04
- 18-alpine
- 18-amazonlinux
- 18-debian
- 18-ubi
- 18-ubuntu
- 20-alpine
- 20-amazonlinux
- 20-debian
- 20-ubi
- 20-ubuntu
arch:
- x64
- arm64
# https://github.com/actions/runner/issues/801
exclude:
- image: 16-alpine3.16
arch: arm64
- image: 18-alpine
arch: arm64
- image: 20-alpine
arch: arm64
fail-fast: false
container:
image: ghcr.io/${{ github.repository }}/dev:${{ matrix.image }}
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
env:
YARN_IGNORE_NODE: 1
steps:
- uses: actions/checkout@v4
with:
lfs: true
- uses: actions/download-artifact@v3
with:
name: build
path: ./
- uses: actions/cache@v3
with:
path: .yarn/cache
key: yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
yarn-
- run: yarn install --immutable
- run: yarn test --only
env:
TEST_SERVICE_KEY: ${{ secrets.TEST_SERVICE_KEY }}
TEST_COLLECTOR: ${{ secrets.TEST_COLLECTOR }}
terminate-arm64:
if: always() && github.event_name == 'pull_request'
needs:
- launch-arm64
- tests
runs-on: ubuntu-latest
steps:
- uses: getsentry/action-github-app-token@v2
id: github-token
with:
app_id: ${{ vars.APPLICATION_ID }}
private_key: ${{ secrets.APPLICATION_PRIVATE_KEY }}
- uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.CI_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.CI_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- uses: solarwinds/ec2-runner-action@main
with:
action: terminate
github-token: ${{ steps.github-token.outputs.token }}
matrix: ${{ needs.launch-arm64.outputs.matrix }}