2017-08-26 10:18:02 +00:00
|
|
|
language: python
|
|
|
|
|
|
|
|
install:
|
|
|
|
- cd ~
|
|
|
|
- git clone --depth=1 https://github.com/MTGos/cross-compilers opt
|
2017-08-26 12:15:40 +00:00
|
|
|
- sudo apt-get install libfl-dev
|
2017-08-26 12:11:18 +00:00
|
|
|
- |
|
|
|
|
CMAKE_URL="https://cmake.org/files/v3.7/cmake-3.7.2-Linux-x86_64.tar.gz"
|
|
|
|
mkdir -p cmake &&
|
|
|
|
travis_retry wget --no-check-certificate --quiet -O - "${CMAKE_URL}" | tar --strip-components=1 -xz -C cmake
|
|
|
|
export PATH="~/cmake/bin:$PATH"
|
2017-08-26 10:20:24 +00:00
|
|
|
- cd -
|
2017-08-26 10:18:02 +00:00
|
|
|
|
|
|
|
python:
|
|
|
|
- "3.4"
|
|
|
|
|
|
|
|
script:
|
|
|
|
- bash do_all.sh
|
2017-08-26 10:21:12 +00:00
|
|
|
- cd out
|
2017-08-26 10:18:02 +00:00
|
|
|
|
|
|
|
deploy:
|
|
|
|
provider: pages
|
|
|
|
skip_cleanup: true
|
|
|
|
github_token: $GITHUB_TOKEN
|
|
|
|
on:
|
|
|
|
branch: master
|
|
|
|
target_branch: kernel
|
|
|
|
repo: https://github.com/MTGos/nightlies
|
|
|
|
|