blob: c5aa33dc3c23e7cee6a3611e129f6fe1d34dad27 [file] [log] [blame]
khenaidooac637102019-01-14 15:44:34 -05001language: go
2
3go:
4 - 1.9.x
5 - 1.10.x
6 - 1.11.x
7
8os:
9 - linux
10 - osx
11
12matrix:
13 include:
14 name: "Go 1.11.x CentOS 32bits"
15 language: go
16 go: 1.11.x
17 os: linux
18 services:
19 - docker
20 script:
21 # Please update Go version in travis_test_32 as needed
22 - "docker run -i -v \"${PWD}:/zstd\" toopher/centos-i386:centos6 /bin/bash -c \"linux32 --32bit i386 /zstd/travis_test_32.sh\""
23
24install:
25 - "wget https://github.com/DataDog/zstd/files/2246767/mr.zip"
26 - "unzip mr.zip"
27script:
28 - "go build"
29 - "PAYLOAD=`pwd`/mr go test -v"
30 - "PAYLOAD=`pwd`/mr go test -bench ."