File: .travis.yml

package info (click to toggle)
golang-github-pkg-sftp 0.0~git20160930.0.4d0e916-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 320 kB
  • sloc: makefile: 5
file content (25 lines) | stat: -rw-r--r-- 499 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
language: go
go_import_path: github.com/pkg/sftp
go:
  - 1.4.3
  - 1.5.2
  - 1.6.2
  - tip

sudo: false

addons:
  ssh_known_hosts:
      - bitbucket.org

install:
  - go get -t -v ./...
  - ssh-keygen -t rsa -q -P "" -f /home/travis/.ssh/id_rsa

script:
  - go test -integration -v ./...
  - go test -testserver -v ./...
  - go test -integration -testserver -v ./...
  - go test -race -integration -v ./...
  - go test -race -testserver -v ./...
  - go test -race -integration -testserver -v ./...