-
Notifications
You must be signed in to change notification settings - Fork 62
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
410 changed files
with
142,682 additions
and
4,387 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 |
---|---|---|
|
@@ -2,26 +2,34 @@ | |
|
||
set -e | ||
|
||
git config --global user.name "Dzomo, the Everest Yak" | ||
git config --global user.email "[email protected]" | ||
|
||
git clone https://github.com/fstarlang/fstar-mode.el | ||
git clone https://dzomo:$DZOMO_TOKEN@github.com/fstarlang/fstarlang.github.io | ||
|
||
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then | ||
sudo apt-get install --yes libssl-dev opam libgmp-dev libsqlite3-dev g++-5 gcc-5 libc6-dev; | ||
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 200; | ||
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-5 200; | ||
fi | ||
|
||
sudo easy_install docutils sphinx sphinx-rtd-theme | ||
|
||
export OPAMYES=true | ||
opam init | ||
export OPAMJOBS=4 | ||
opam init --comp=4.05.0 | ||
eval $(opam config env) | ||
opam install batteries sqlite3 fileutils stdint zarith yojson pprint \ | ||
ppx_deriving_yojson menhir ulex process fix wasm | ||
|
||
git clone https://github.com/project-everest/everest | ||
./everest/everest --yes opam z3 | ||
|
||
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then | ||
export Z3=z3-4.4.1-x64-ubuntu-14.04; | ||
wget https://github.com/Z3Prover/z3/releases/download/z3-4.4.1/$Z3.zip; | ||
unzip $Z3.zip; | ||
wget https://www.dropbox.com/s/r1uj2cqifhz50ri/d8.tar.bz2?dl=0 -O d8.tar.bz2 | ||
tar xjvf d8.tar.bz2 | ||
fi | ||
|
||
git clone --branch stable --single-branch --depth 1 https://github.com/FStarLang/FStar.git fstar | ||
git clone --branch master --single-branch --depth 1 https://github.com/mitls/hacl-star | ||
git clone --branch master --single-branch --depth 1 https://github.com/FStarLang/FStar.git fstar | ||
git clone --branch fstar-master --single-branch --depth 1 https://github.com/mitls/hacl-star | ||
make -C fstar/src/ocaml-output | ||
make -C fstar/ulib/ml -j 4 |
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 +1,5 @@ | ||
IndentPPDirectives: AfterHash | ||
AllowShortBlocksOnASingleLine: false | ||
AllowShortFunctionsOnASingleLine: Empty | ||
Cpp11BracedListStyle: false | ||
AlignAfterOpenBracket: AlwaysBreak |
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,3 +1,6 @@ | ||
*.ml* eol=lf | ||
*.sh eol=lf | ||
*.c eol=lf | ||
*.h eol=lf | ||
Makefile eol=lf | ||
*.hints -diff |
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 |
---|---|---|
|
@@ -3,3 +3,8 @@ | |
_build | ||
krml | ||
tags | ||
*.checked | ||
*.checked.lax | ||
*~ | ||
book/_build | ||
fstar-mode.el |
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.