.travis.yml 229 Bytes
Newer Older
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
1 2 3 4 5 6 7 8 9
language: go

go:
  - 1.3
  - release
  - tip

script:
  - go test -v ./...
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
10 11 12
  - cd cmd/ipfs && go install # test it can be compiled
  - cd ../../test/
  - make                      # sharness tests
13
  - cd ..
14 15

env: TEST_NO_FUSE=1