mirror of
https://github.com/danog/gllvm.git
synced 2024-11-26 23:24:42 +01:00
15 lines
180 B
Bash
Executable File
15 lines
180 B
Bash
Executable File
#!/bin/bash -x
|
|
# Make sure we exit if there is a failure
|
|
set -e
|
|
|
|
cd .travis
|
|
|
|
echo `pwd`
|
|
|
|
export PATH=/usr/lib/llvm-3.8/bin:${PATH}
|
|
export WLLVM_OUTPUT_LEVEL=WARNING
|
|
|
|
make
|
|
|
|
exit $?
|