forked from klee/klee
-
Notifications
You must be signed in to change notification settings - Fork 10
ci: Fix docker release workflow #203
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
2856db3
ci: Update docker release workflow
misonijnik 3997ad5
ci: Fix `freebsd` image version on cirrus
misonijnik d1688dc
style: Fix typo
misonijnik 0141de1
ci: Pin ubuntu version set Z3 as a deafult solver fo macOS
misonijnik 63f8750
chore: Update gtest version
misonijnik 47eb815
ci: Update llvm version in Dockerfile
misonijnik 674c15c
fix: Prefer new naming of github releases
misonijnik 9642b2b
fix: Fix build z3 for macOS
misonijnik 35f67a8
fix: Maybe?
misonijnik e36f03d
fix(scripts): Fix ShellCheck warning
misonijnik edbd7ef
fix(scripts): Fix URL to z3 binaries for osx
misonijnik e6e205d
fix(scripts):
misonijnik f76a5b5
fix(scripts): Install z3 in the rigth path
misonijnik bb5f5b1
fix(scripts): Install z3 in the rigth path
misonijnik 90c7183
ci(scripts): Try to find the right wat to use Z3 on macOS
misonijnik 57e2e9f
fix(scripts): Try to find the right wat to use Z3 on macOS
misonijnik d53996f
ci: Disable FP warning
misonijnik fa8fad9
feat(build): Add `ENABLE_FP_RUNTIME` option
misonijnik 6975607
fix: Fix typo
misonijnik 1d92f55
fix: Fix typo
misonijnik c9355ed
style: Use a vector instead of an array as a variable length container
misonijnik d7d1122
ci: Update docker_release_push.yml
misonijnik 37e6b85
ci(release): Update registry
misonijnik 369e01e
ci(cirrus): Update cmake parameters
misonijnik 35fd181
chore(docker): Update Dockerfile
misonijnik 8afd449
ci(release): Update registry
misonijnik 7e114e4
chore(docker): Update Dockerfile
misonijnik 8500e78
ci(release): Update registry
misonijnik aa1db9f
test: Require `not-ubsan` for a couple of tests with 32-bit binaries
misonijnik File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,13 +1,14 @@ | ||
install_binary_artifact_z3 () { | ||
set +e | ||
brew install python@2 | ||
if [[ "X$?" != "X0" ]]; then | ||
brew link --overwrite python@2 | ||
fi | ||
set -e | ||
#!/usr/bin/env bash | ||
# shellcheck disable=SC2034 | ||
|
||
install_binary_artifact_z3() { | ||
brew install z3 | ||
} | ||
|
||
is_installed_z3() { | ||
[[ -f "/usr/local/opt/z3/bin/z3" ]] | ||
} | ||
setup_artifact_variables_z3() { | ||
Z3_INSTALL_PATH="$(brew --cellar z3)/${Z3_VERSION}" | ||
} | ||
|
||
install_build_dependencies_z3() { | ||
return 0 | ||
} |
This file contains hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.