You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
405 B
Bash
19 lines
405 B
Bash
#! /bin/bash
|
|
|
|
set -ex
|
|
|
|
(cd event-schemas/ && ./check_examples.py)
|
|
(cd api && ./check_examples.py)
|
|
(cd scripts && ./gendoc.py -v)
|
|
(cd api && npm install && node validator.js -s "client-server")
|
|
|
|
: ${GOPATH:=${WORKSPACE}/.gopath}
|
|
mkdir -p "${GOPATH}"
|
|
export GOPATH
|
|
go get github.com/hashicorp/golang-lru
|
|
go get gopkg.in/fsnotify.v1
|
|
|
|
(cd scripts/continuserv && go build)
|
|
(cd scripts/speculator && go build)
|
|
|