Files
kata-containers/.travis.yml
Jose Carlos Venegas Munoz 3e4fdbbe6f travis: fix runtime build
Runtime command now is built on cli directory.

Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
2018-03-15 12:10:52 -06:00

28 lines
393 B
YAML

#
# Copyright (c) 2018 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
sudo: required
dist: trusty
language: go
env:
- KATA_RUNTIME=cc
- KATA_RUNTIME=runv
go:
- 1.8
before_script:
- ".ci/static-checks.sh"
install:
- cd ${TRAVIS_BUILD_DIR}
- pushd cli
- make KATA_RUNTIME=${KATA_RUNTIME}
- sudo -E PATH=$PATH make KATA_RUNTIME=${KATA_RUNTIME} install
- popd