-
Notifications
You must be signed in to change notification settings - Fork 99
Remove Java 8 support + move the testsuite from Travis to Azure #261
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
Changes from 5 commits
f211c5c
d49f358
cb98966
b00df6f
134c323
23e526c
5849d39
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,18 @@ exitIfError() { | |
[ "$EXIT" != "0" ] && exit $EXIT | ||
} | ||
|
||
# # # # # # # # # # # # # # # # # # # # # # # | ||
# | ||
# These tests are now disabled by default. | ||
# | ||
# | ||
|
||
if [ "$DISABLED" != "false" ]; then | ||
echo "Tests are disabled by default. In order to run them locally set DISABLED=false" | ||
echo "Usage: DISABLED=false ./build.sh" | ||
exit 0 | ||
fi | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why aren't we just removing the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I can do that as well yes. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @Frawless was it your intention as per the proposal you wrote? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes, |
||
arch=$(uname -m) | ||
echo "Architecture: $arch" | ||
|
||
|
Uh oh!
There was an error while loading. Please reload this page.