File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -201,6 +201,25 @@ jobs:
201
201
- run :
202
202
name : Test package "cosmwasm" without cgo
203
203
command : CGO_ENABLED=0 go test .
204
+
205
+ # Build types and cosmwasm with libwasmvm linking disabled
206
+ nolink_libwasmvm :
207
+ docker :
208
+ - image : cimg/go:1.21.4
209
+ steps :
210
+ - checkout
211
+ - run :
212
+ name : Build package "types" without cgo
213
+ command : go build -tags "nolink_libwasmvm" ./types
214
+ - run :
215
+ name : Build package "cosmwasm" without cgo
216
+ command : go build -tags "nolink_libwasmvm" .
217
+ - run :
218
+ name : Test package "types" without cgo
219
+ command : go test -tags "nolink_libwasmvm" ./types
220
+ - run :
221
+ name : Test package "cosmwasm" with libwasmvm linking disabled
222
+ command : go test -tags "nolink_libwasmvm" .
204
223
205
224
tidy-go :
206
225
docker :
@@ -433,6 +452,7 @@ workflows:
433
452
- libwasmvm_audit
434
453
- format-go
435
454
- wasmvm_no_cgo
455
+ - nolink_libwasmvm
436
456
- tidy-go
437
457
- format-scripts
438
458
- lint-scripts
You can’t perform that action at this time.
0 commit comments