mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-20 19:38:40 +00:00
Runtime command now is built on cli directory. Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
28 lines
393 B
YAML
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
|