You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.6 KiB
43 lines
1.6 KiB
language: go
|
|
go:
|
|
- stable
|
|
go_import_path: github.com/harmony-one/harmony
|
|
install:
|
|
- env GO111MODULE=on
|
|
- export GOPATH=$HOME/gopath
|
|
- export CGO_CPPFLAGS="-I$GOPATH/src/github.com/harmony-one/bls/include -I$GOPATH/src/github.com/harmony-one/mcl/include"
|
|
- export CGO_LDFLAGS="-L$GOPATH/src/github.com/harmony-one/bls/lib -L$GOPATH/src/github.com/harmony-one/mcl/lib"
|
|
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$GOPATH/src/github.com/harmony-one/bls/lib:$GOPATH/src/github.com/harmony-one/mcl/lib
|
|
- mkdir -p $HOME/gopath/src/github.com/harmony-one
|
|
- cd $HOME/gopath/src
|
|
- cd github.com/harmony-one
|
|
- git clone https://github.com/harmony-one/mcl.git
|
|
- cd mcl
|
|
- make
|
|
- cd ..
|
|
- git clone https://github.com/harmony-one/bls.git
|
|
- cd bls
|
|
- make
|
|
- cd ../harmony
|
|
- go get -t -v ./...
|
|
- go get -u golang.org/x/lint/golint
|
|
- go get -u golang.org/x/tools/cmd/goimports
|
|
- go get gopkg.in/check.v1
|
|
- go get github.com/harmony-ek/gencodec
|
|
- go get github.com/golang/mock/mockgen
|
|
- go get github.com/golang/protobuf/protoc-gen-go
|
|
- ./scripts/install_protoc.sh -V 3.6.1
|
|
- ./scripts/travis_checker.sh
|
|
- go build -v ./...
|
|
script:
|
|
- ./scripts/travis_checker.sh
|
|
notifications:
|
|
slack: harmonyone:gggCd1QQopsQAW8JYgBWiH7M
|
|
after_success:
|
|
- wget https://raw.githubusercontent.com/DiscordHooks/travis-ci-discord-webhook/master/send.sh
|
|
- chmod +x send.sh
|
|
- ./send.sh success $WEBHOOK_URL
|
|
after_failure:
|
|
- wget https://raw.githubusercontent.com/DiscordHooks/travis-ci-discord-webhook/master/send.sh
|
|
- chmod +x send.sh
|
|
- ./send.sh failure $WEBHOOK_URL
|
|
|