Files
kraken/.travis.yml

35 lines
593 B
YAML
Raw Permalink Normal View History

2017-10-04 17:43:10 -07:00
language: cpp
compiler: clang
2017-10-04 21:35:07 -07:00
branches:
only:
- feature-vulkan
2017-10-04 21:35:07 -07:00
matrix:
include:
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libc++-dev
- os: osx
osx_image: xcode9.1
2017-10-04 17:55:09 -07:00
2017-10-04 17:43:10 -07:00
# Build steps
script:
- mkdir build
- cd build
- cmake .. && make
- cd archive
- tar cvzf kraken-$TRAVIS_OS_NAME-$TRAVIS_TAG.tar.gz *
2017-10-04 17:43:10 -07:00
deploy:
provider: releases
api_key: $GITHUB_TOKEN
file: build/archive/kraken-$TRAVIS_OS_NAME-$TRAVIS_TAG.tar.gz
skip_cleanup: true
on:
tags: true