-
Notifications
You must be signed in to change notification settings - Fork 71
317 lines (302 loc) · 8.76 KB
/
test.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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
GO_VERSION: 1.22.3
jobs:
install-deps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: Install SSH
run: |
sudo apt-get update
sudo apt-get install -y openssh-client git
prepare:
runs-on: ubuntu-latest
needs: install-deps
steps:
- uses: actions/checkout@v2
- name: Fetch all tags
run: git fetch --all
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y ocl-icd-opencl-dev libhwloc-dev
- name: Sync submodules
run: git submodule sync
- name: Update submodules
run: git submodule update --init
download-params:
runs-on: ubuntu-latest
needs: [install-deps, prepare]
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y ocl-icd-opencl-dev libhwloc-dev
- name: Run boostci
run: make boostci
- name: Restore parameters cache
uses: actions/cache@v2
with:
path: /var/tmp/filecoin-proof-parameters/
key: v25-8mb-lotus-params
- name: Fetch parameters
run: ./boostci fetch-params 8388608
- name: Save parameters cache
uses: actions/cache@v2
with:
path: /var/tmp/filecoin-proof-parameters/
key: v25-8mb-lotus-params
- name: Upload parameters
uses: actions/upload-artifact@v2
with:
name: filecoin-proof-parameters
path: /var/tmp/filecoin-proof-parameters/
build-all:
runs-on: ubuntu-latest
needs: [install-deps, prepare]
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y npm
- name: Build Go
run: make build-go
- name: Store Artifacts
uses: actions/upload-artifact@v2
with:
name: boost
path: boost
- name: Create Linux directory and move boost
run: |
mkdir linux
mv boost linux/
- name: Persist to workspace
uses: actions/upload-artifact@v2
with:
name: linux
path: linux
test:
runs-on: ubuntu-latest
# needs: [install-deps, prepare, download-params]
strategy:
matrix:
test-suite:
- itest-dummydeal_offline
- itest-dummydeal
- itest-graphsync_identity_cid
- itest-retrieval
- itest-direct_deal
- all
- itest-data-segment-index
- itest-ipni
- itest-multiminer-graphsync
- booster-http
- booster-bitswap
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y ocl-icd-opencl-dev libhwloc-dev
- name: Download parameters
uses: actions/download-artifact@v2
with:
name: filecoin-proof-parameters
path: /var/tmp/filecoin-proof-parameters/
- name: Run tests
run: |
go test -v --tags=debug -timeout 30m ./...
build-macos:
runs-on: macos-latest
needs: install-deps
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
brew update
brew install pkg-config
- name: Install Rust
run: |
curl https://sh.rustup.rs -sSf | sh -s -- -y
- name: Install hwloc
run: |
mkdir ~/hwloc
curl --location https://download.open-mpi.org/release/hwloc/v2.4/hwloc-2.4.1.tar.gz --output ~/hwloc/hwloc-2.4.1.tar.gz
cd ~/hwloc
tar -xvzpf hwloc-2.4.1.tar.gz
cd hwloc-2.4.1
./configure && make && sudo make install
- name: Build MacOS
run: make debug
- name: Check tag and version output match
run: ./scripts/version-check.sh ./boost
- name: Store Artifacts
uses: actions/upload-artifact@v2
with:
name: boost
path: boost
- name: Create Darwin directory and move boost
run: |
mkdir darwin
mv boost darwin/
- name: Persist to workspace
uses: actions/upload-artifact@v2
with:
name: darwin
path: darwin
lint:
runs-on: ubuntu-latest
needs: install-deps
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: Install golangci-lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.56.2
- name: Lint
run: |
golangci-lint run -v --timeout 2m
gofmt:
runs-on: ubuntu-latest
needs: install-deps
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: Check gofmt
run: |
! go fmt ./... 2>&1 | read
- name: Git diff check
run: git --no-pager diff
- name: Git diff quiet
run: git --no-pager diff --quiet
cbor-check:
runs-on: ubuntu-latest
needs: install-deps
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: Install goimports
run: go install golang.org/x/tools/cmd/goimports
- name: Install cbor-gen-for
run: go install github.com/hannahhoward/cbor-gen-for
- name: Generate CBOR
run: make cbor-gen
- name: Git diff check
run: git --no-pager diff
- name: Git diff quiet
run: git --no-pager diff --quiet
docs-check:
runs-on: ubuntu-latest
needs: install-deps
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: Install goimports
run: go install golang.org/x/tools/cmd/goimports
- name: Generate Docs
run: make docsgen
- name: Git diff check
run: git --no-pager diff
- name: Git diff quiet
run: git --no-pager diff --quiet
gen-check:
runs-on: ubuntu-latest
needs: install-deps
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: Install goimports
run: go install golang.org/x/tools/cmd/goimports
- name: Install cbor-gen-for
run: go install github.com/hannahhoward/cbor-gen-for
- name: Generate Code
run: make gen
- name: Git diff check
run: git --no-pager diff
- name: Git diff quiet
run: git --no-pager diff --quiet
lid-docker-compose:
runs-on: ubuntu-latest
needs: [install-deps, prepare, download-params]
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y ocl-icd-opencl-dev libhwloc-dev
- name: Download parameters
uses: actions/download-artifact@v2
with:
name: filecoin-proof-parameters
path: /var/tmp/filecoin-proof-parameters/
- name: Start YugabyteDB
run: docker run --rm --name yugabyte -d -p 5433:5433 yugabytedb/yugabyte:2.18.0.0-b65 bin/yugabyted start --daemon=false
shell: bash
- run: |
while true; do
status=$(docker exec yugabyte bin/yugabyted status);
echo $status;
echo $status | grep Running && break;
sleep 1;
done
shell: bash
- name: Run LID integration tests
run: |
set -x
make test-lid
mod-tidy-check:
runs-on: ubuntu-latest
needs: install-deps
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y git
- name: Run mod tidy check
run: go mod tidy -v