mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-13 11:11:30 -04:00
20 lines
433 B
YAML
20 lines
433 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.5
|
|
|
|
env:
|
|
- TRAVIS_NODE_VERSION="4.1"
|
|
|
|
install:
|
|
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION
|
|
|
|
before_script:
|
|
npm install -g coffee-script coffeelint jasmine
|
|
|
|
script:
|
|
- make check
|
|
- go test -v -race ./broker
|
|
- cd proxy
|
|
- cake lint
|
|
- cake test
|