Merge pull request #409 from miaoyq/fix-408

Update golang version to 1.9.x
This commit is contained in:
Mike Brown 2017-11-10 09:03:56 -06:00 committed by GitHub
commit b4c8efd898
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -50,7 +50,7 @@ jobs:
- make .gitvalidation
- make verify
- make binaries
go: 1.8.x
go: 1.9.x
- script:
- make install.tools
- make .gitvalidation
@ -69,18 +69,18 @@ jobs:
- cat /tmp/test-integration/containerd.log
- cat /tmp/test-cri/cri-containerd.log
- cat /tmp/test-cri/containerd.log
go: 1.8.x
go: 1.9.x
- stage: E2E Test
script:
# Skip node e2e test for pull request.
- test "${TRAVIS_PULL_REQUEST}" != "false" && exit 0 || true
- make install.deps
- UPLOAD_LOG=true make test-e2e-node
go: 1.8.x
go: 1.9.x
- stage: Deploy
script:
- test "${TRAVIS_PULL_REQUEST}" != "false" && exit 0 || true
- make push
# Build a tarball including CNI.
- PUSH_VERSION=true make push TARBALL_PREFIX=cri-containerd-cni INCLUDE_CNI=true
go: 1.8.x
go: 1.9.x

View File

@ -48,7 +48,7 @@ backport version of `libsecomp-dev` is required. See [travis.yml](.travis.yml) f
2. Install other dependencies:
* **`nsenter`**: Required by CNI and portforward.
* **`socat`**: Required by portforward.
3. Install and setup a go 1.8.x development environment.
3. Install and setup a go 1.9.x development environment.
4. Make a local clone of this repository.
5. Install binary dependencies by running the following command from your cloned `cri-containerd/` project directory:
```bash