forked from Z3Prover/z3
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from batfish/ari-travis
Modifications for batfish (READY FOR REVIEW)
- Loading branch information
Showing
15 changed files
with
233 additions
and
213 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
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,16 @@ | ||
To generate zips on your local machine, do: | ||
|
||
## Ubuntu 14,04 (USES DOCKER) | ||
LINUX_BASE=ubuntu_14.04 TRAVIS_OS_NAME=linux contrib/ci/scripts/travis_ci_entry_point.sh | ||
|
||
## Ubuntu 16,04 (USES DOCKER) | ||
LINUX_BASE=ubuntu_16.04 TRAVIS_OS_NAME=linux contrib/ci/scripts/travis_ci_entry_point.sh | ||
|
||
## OSX with OpenMP (RECOMMENDED, MUST BE RUN ON OSX, DOES NOT USE DOCKER) | ||
./package_z3_osx_openmp.sh | ||
|
||
## OSX without OpenMP (NOT RECOMMENDED, MUST BE RUN ON OSX, DOES NOT USE DOCKER) | ||
./package_z3_osx.sh | ||
|
||
|
||
Output zips are placed in build/generated-packages/ |
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,16 @@ | ||
#!/usr/bin/env bash | ||
|
||
z3_git_version() { | ||
if [ -n "${Z3_GIT_VERSION}" ]; then | ||
echo "${Z3_GIT_VERSION}" | ||
else | ||
COMMIT_HASH="$(git rev-parse HEAD)" | ||
if [ -z "${COMMIT_HASH}" ]; then | ||
echo "Not a git repository" 1>&2 | ||
exit 1 | ||
fi | ||
COMMIT_DATE="$(git show -s --format=%ci | awk '{ print $1 }')" | ||
echo "${COMMIT_DATE}-${COMMIT_HASH}" | ||
fi | ||
} | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -45,3 +45,5 @@ fi | |
if [ "X${JAVA_BINDINGS}" = "X1" ]; then | ||
brew cask install java | ||
fi | ||
brew_install_or_upgrade llvm | ||
|
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.