You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ravi/.travis.yml

12 lines
540 B

9 years ago
language: cpp
os:
- linux
9 years ago
env:
- ARCH="x86_64"
9 years ago
install:
- wget http://www.llvm.org/releases/3.7.0/llvm-3.7.0.src.tar.xz
- tar -xvf llvm-3.7.0.src.tar.xz
- cd llvm-3.7.0.src && mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/tmp/LLVM37 -DLLVM_TARGETS_TO_BUILD="X86" .. && make install
9 years ago
script:
- mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release -DLLVM_DIR=/tmp/LLVM37/share/llvm/cmake -G "Unix Makefiles" -DLLVM_JIT=ON .. && make && cd ../lua-5.3.1-tests && sh run_tests.sh ../build/lua