summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2018-11-24 06:20:43 (GMT)
committerAlexey Neyman <stilor@att.net>2018-11-24 06:20:43 (GMT)
commit9eb15242b4263814760a8fb95db25e1263b022fd (patch)
tree2252cc349d0542c2024276af777780a0407fc3b2 /.travis.yml
parent26d5c3604d7d6d588f06cd3a93483f1f4345cc8e (diff)
Remove vestiges of Travis/Waffle
They are no longer used and cause more confusion among users than they add benefits. If/when @bhundven finishes the integration with GitLab, he'll add new scripts and status. Fixes #999. Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml56
1 files changed, 0 insertions, 56 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index aa56c43..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,56 +0,0 @@
-# Using container-based infrastructure
-dist: trusty
-sudo: false
-
-# 'bash' will define a generic environment without interfering environment
-# settings like "CC=gcc"
-language: bash
-
-# Only build the master branch
-branches:
- only:
- - master
-
-# Caching the downloaded src packages between several builds to save travis-ci
-# download time and bandwidth
-cache:
- directories:
- - $HOME/src
-
-# Installing needed dependencies
-addons:
- apt:
- packages:
- - bison
- - flex
- - libncurses5-dev
- - texinfo
- - help2man
- - g++
-
-# Building crosstool-NG core
-install:
- - ./bootstrap
- - ./configure --enable-local
- - make
-
-# Here is the list of all the standard samples tracked
-# by the continuous integration system
-env:
- - CT_SAMPLE=arm-unknown-eabi
- - CT_SAMPLE=arm-unknown-linux-musleabi
- - CT_SAMPLE=aarch64-unknown-linux-gnu
- - CT_SAMPLE=mips64el-multilib-linux-uclibc
- - CT_SAMPLE=powerpc-e500v2-linux-gnuspe
- - CT_SAMPLE=x86_64-unknown-linux-uclibc
- - CT_SAMPLE=xtensa-fsf-linux-uclibc
-
-# Building the standard samples
-script:
- - . ./.travis.sh # Load the travis environment
- - ct-ng $CT_SAMPLE # Configure the build
- - ct-ng_travis_build # Build the sample
-
-# On failure displaying the last lines of the log file
-after_failure:
- - tail -n 1000 build.log