mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-26 17:54:24 +01:00
We have hit an issue using trusty in travis and go 1.11.7 the issue is fixed using xenial. Fixes: #1492. Signed-off-by: Salvador Fuentes <salvador.fuentes@intel.com>
35 lines
532 B
YAML
35 lines
532 B
YAML
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
# Copyright (c) 2018 IBM
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
sudo: required
|
|
dist: xenial
|
|
|
|
language: go
|
|
os:
|
|
- linux
|
|
- linux-ppc64le
|
|
go_import_path: github.com/kata-containers/runtime
|
|
|
|
go:
|
|
- "1.11.x"
|
|
|
|
env:
|
|
- target_branch=$TRAVIS_BRANCH
|
|
|
|
before_install:
|
|
- sudo apt update -y -qq
|
|
- sudo apt install -y -qq curl # for yq installer
|
|
|
|
before_script:
|
|
- ".ci/static-checks.sh"
|
|
|
|
install:
|
|
- cd ${TRAVIS_BUILD_DIR}
|
|
- ".ci/install-yq.sh"
|
|
- make
|
|
- sudo -E PATH=$PATH make install
|