Skip to content
Snippets Groups Projects

Update .gitlab-ci.yml, README.md

Merged Sydney Anne Erickson requested to merge Anne/CI into release
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
.gitlab-ci.yml 0 → 100644
+ 17
0
image: docker-registry.xx.network/elixxir/sysadmin/backend-ci:go1.17-wasm
build:
stage: build
script:
- GOOS=js GOARCH=wasm go build -o xxdk.wasm
#native-test:
# stage: test
# script:
# - go test ./...
wasm-test:
stage: test
script:
- export PATH=/root/go/bin:$PATH
- GOOS=js GOARCH=wasm go test ./...
Loading