2014-02-20 17:37:44 -06:00
|
|
|
# Use something that's not 'ruby' so we don't set up things like
|
|
|
|
# RVM/bundler/ruby and whatnot. Right now 'rust' isn't a language on travis and
|
|
|
|
# it treats unknown languages as ruby-like I believe.
|
|
|
|
language: c
|
|
|
|
|
2014-02-26 17:04:18 -06:00
|
|
|
# Before we start doing anything, install a stock LLVM
|
2014-02-20 17:37:44 -06:00
|
|
|
install:
|
2014-02-26 17:04:18 -06:00
|
|
|
- sudo apt-get install llvm-3.3 llvm-3.3-dev clang-3.3 lldb-3.3
|
2014-02-20 17:37:44 -06:00
|
|
|
|
2014-02-26 17:04:18 -06:00
|
|
|
# All of the llvm tools are suffixed with "-3.3" which we don't want, so symlink
|
2014-02-20 17:37:44 -06:00
|
|
|
# them all into a local directory and just use that
|
|
|
|
#
|
|
|
|
# FIXME: this shouldn't update the src/llvm sub-repo, that takes about a minute
|
|
|
|
# it's gotta download so much stuff.
|
|
|
|
before_script:
|
|
|
|
- mkdir -p local-llvm/bin
|
2014-02-26 17:04:18 -06:00
|
|
|
- ln -nsf /usr/bin/llvm-config-3.3 local-llvm/bin/llvm-config
|
|
|
|
- ln -nsf /usr/bin/llvm-mc-3.3 local-llvm/bin/llvm-mc
|
|
|
|
- ln -nsf /usr/bin/llvm-as-3.3 local-llvm/bin/llvm-as
|
|
|
|
- ln -nsf /usr/bin/llvm-dis-3.3 local-llvm/bin/llvm-dis
|
|
|
|
- ln -nsf /usr/bin/llc-3.3 local-llvm/bin/llc
|
|
|
|
- ln -nsf /usr/include/llvm-3.3 local-llvm/include
|
2014-02-20 17:37:44 -06:00
|
|
|
- ./configure --disable-optimize-tests --llvm-root=`pwd`/local-llvm --enable-fast-make --enable-clang
|
|
|
|
|
|
|
|
# Tidy everything up first, then build a few things, and then run a few tests.
|
|
|
|
# Note that this is meant to run in a "fairly small" amount of time, so this
|
|
|
|
# isn't exhaustive at all.
|
|
|
|
#
|
2014-02-24 01:23:08 -06:00
|
|
|
# As a result of https://github.com/travis-ci/travis-ci/issues/1066, we run
|
|
|
|
# everything in one large command instead of multiple commands.
|
|
|
|
script: |
|
|
|
|
make tidy &&
|
2014-03-02 13:02:42 -06:00
|
|
|
make -j4 rustc-stage1 &&
|
2014-02-24 01:23:08 -06:00
|
|
|
make check-stage1-std check-stage1-rpass check-stage1-cfail check-stage1-rfail
|
2014-02-20 17:37:44 -06:00
|
|
|
|
|
|
|
env:
|
|
|
|
- NO_BENCH=1
|
|
|
|
|
|
|
|
# We track this ourselves, and in theory we don't have to update the LLVM repo
|
|
|
|
# (but sadly we do right now anyway).
|
|
|
|
git:
|
|
|
|
submodules: false
|