-
Notifications
You must be signed in to change notification settings - Fork 18
212 lines (180 loc) · 6.67 KB
/
release.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
name: Release Pipeline
on:
push:
branches:
# Regular release channels
- master
- next
- beta
- alpha
# Support, hotfix branches like: 1.0.x or 1.x
- '([0-9]+)(\.([0-9]+))?\.x'
# Allows triggering the workflow manually
workflow_dispatch:
inputs:
payment_network:
description: "Payment network (holesky, goerli, mainnet, mumbai, polygon, rinkeby)"
required: false
default: "holesky"
provider_version:
description: "Provider version (e.g., v0.15.0 or pre-rel-v0.15.1)"
required: false
default: "v0.15.2"
requestor_version:
description: "Requestor version (e.g., v0.15.0 or pre-rel-v0.15.1)"
required: false
default: "v0.15.2"
provider_wasi_version:
description: "Provider WASI version (e.g., v0.2.2)"
required: false
default: "v0.2.2"
provider_vm_version:
description: "Provider VM version (e.g., v0.3.0)"
required: false
default: "v0.3.0"
log_level:
description: "The log level to force on golem-js pino-logger"
required: false
default: "info"
# We're going to interact with GH from the pipelines, so we need to get some permissions
permissions:
contents: read # for checkout
env:
PROVIDER_VERSION: ${{ github.event.inputs.provider_version || 'v0.15.2' }}
REQUESTOR_VERSION: ${{ github.event.inputs.requestor_version || 'v0.15.2' }}
PROVIDER_WASI_VERSION: ${{ github.event.inputs.provider_wasi_version || 'v0.2.2' }}
PROVIDER_VM_VERSION: ${{ github.event.inputs.provider_vm_version || 'v0.3.0' }}
PAYMENT_NETWORK: ${{ github.event.inputs.payment_network || 'holesky' }}
GOLEM_PINO_LOG_LEVEL: ${{ github.event.inputs.log_level || 'info' }}
jobs:
regular-checks:
name: Build and unit-test on supported platforms and NodeJS versions
strategy:
matrix:
# Make sure you're addressing it to the minor version, as sometimes macos was picking 20.9 while others 20.10
# and that caused issues with rollup
node-version: [18.19.x, 20.10.x]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Setup NodeJS ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Perform regular checks
run: |
npm ci
npm run format:check
npm run lint
npm run test:unit
npm run build
npm install --prefix examples
npm run --prefix examples lint:ts
npm run test:import
- name: Upload unit test reports
uses: actions/upload-artifact@v4
if: always()
with:
name: unit-test-report-${{matrix.os}}-node-${{matrix.node-version}}
path: reports/unit-report.xml
run-e2e-tests:
name: Run E2E tests
needs: regular-checks
runs-on: goth2
steps:
- uses: actions/checkout@v4
- name: Prepare providers and requestor
uses: ./.github/actions/prepare-tests
- name: Start the E2E test
run: docker exec -t docker-requestor-1 /bin/sh -c "cd /golem-js && npm run test:e2e"
- name: Upload E2E reports
uses: actions/upload-artifact@v4
if: always()
with:
name: e2e-test-report
path: reports/e2e-report.xml
- name: Cleanup test environment
uses: ./.github/actions/cleanup-tests
if: always()
with:
type: "e2e"
run-examples-tests:
name: Run Examples tests
needs: regular-checks
runs-on: goth2
steps:
- uses: actions/checkout@v4
- name: Prepare providers and requestor
uses: ./.github/actions/prepare-tests
- name: Run the Examples tests
run: docker exec -t -e GOLEM_PINO_LOG_LEVEL="${{ env.GOLEM_PINO_LOG_LEVEL }}" docker-requestor-1 /bin/sh -c "cd /golem-js && npm run test:examples -- --exitOnError"
- name: Cleanup test environment
uses: ./.github/actions/cleanup-tests
if: always()
with:
type: "examples"
run-cypress-tests:
name: Run Cypress tests
needs: regular-checks
runs-on: goth2
steps:
- uses: actions/checkout@v4
- name: Prepare providers and requestor
uses: ./.github/actions/prepare-tests
with:
type: "cypress"
- name: Run web server
run: docker exec -t -d docker-requestor-1 /bin/sh -c "cd /golem-js/examples && npm run web"
- name: Run test suite
run: docker exec -t docker-requestor-1 /bin/sh -c "cd /golem-js && npm run test:cypress -- --browser chromium"
- name: Upload test logs
uses: actions/upload-artifact@v4
if: always()
with:
name: cypress-logs
path: .cypress
- name: Cleanup test environment
uses: ./.github/actions/cleanup-tests
with:
type: "cypress"
release:
name: Release the SDK to NPM and GitHub
needs: [run-e2e-tests, run-examples-tests, run-cypress-tests]
runs-on: ubuntu-latest
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for npm provenance
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
# Semantic release requires this as bare minimum
node-version: 20
# Why this? https://github.com/npm/cli/issues/7279
# Why this way? https://github.com/actions/setup-node/issues/213
- name: Install latest npm
shell: bash
run: |
npm install -g npm@latest &&
npm --version &&
npm list -g --depth 0
- name: Install dependencies
run: npm install
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
- name: Build the SDK for release
run: npm run build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
run-name: "${{ github.workflow }} - Network: ${{ github.event.inputs.payment_network }}, Requestor: ${{ github.event.inputs.requestor_version }}, Provider: ${{ github.event.inputs.provider_version }}, WASI: ${{ github.event.inputs.provider_wasi_version }}, VM: ${{ github.event.inputs.provider_vm_version }}"