-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
83 changed files
with
1,721 additions
and
727 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
language: generic | ||
dist: trusty | ||
sudo: required | ||
compiler: clang | ||
|
||
env: | ||
global: | ||
- COMPILER_NAME=clang COMPILER=clang++ CXX=clang++ CC=clang | ||
matrix: | ||
- TRAVIS_ENV="--exhaustive --folder=basic" | ||
- TRAVIS_ENV="--exhaustive --folder=ntdrivers-simplified" | ||
- TRAVIS_ENV="--exhaustive --folder=pthread_extras" | ||
- TRAVIS_ENV="--exhaustive --folder=bits" | ||
- TRAVIS_ENV="--exhaustive --folder=float" | ||
- TRAVIS_ENV="--exhaustive --folder=locks" | ||
- TRAVIS_ENV="--exhaustive --folder=contracts" | ||
- TRAVIS_ENV="--exhaustive --folder=memory-safety" | ||
- TRAVIS_ENV="--exhaustive --folder=pthread" | ||
|
||
before_install: | ||
- sudo rm -rf /usr/local/clang-3.5.0 | ||
- sudo add-apt-repository "deb http://llvm-apt.ecranbleu.org/apt/trusty/ llvm-toolchain-trusty-3.7 main" | ||
- wget -O - http://llvm-apt.ecranbleu.org/apt/llvm-snapshot.gpg.key | sudo apt-key add - | ||
- sudo apt-get update | ||
|
||
install: | ||
- sudo apt-get install -y clang-3.7 llvm-3.7 | ||
- sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-3.7 20 | ||
- sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-3.7 20 | ||
- sudo update-alternatives --install /usr/bin/llvm-config llvm-config /usr/bin/llvm-config-3.7 20 | ||
- sudo update-alternatives --install /usr/bin/llvm-link llvm-link /usr/bin/llvm-link-3.7 20 | ||
- sudo update-alternatives --install /usr/bin/llvm-dis llvm-dis /usr/bin/llvm-dis-3.7 20 | ||
|
||
script: | ||
- $CXX --version | ||
- $CC --version | ||
- clang --version | ||
- clang++ --version | ||
- ./bin/build.sh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
MONO_VERSION=3.8.0 | ||
MONO_VERSION=5.0.0.100 | ||
BOOGIE_COMMIT=4e4c3a5252 | ||
CORRAL_COMMIT=874a078e39 | ||
LOCKPWN_COMMIT=a4d802a1cb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.