Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 2.9k
Add jenkins scripts & deployment test for sparkjava#538
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| #!/usr/bin/env bash | ||
| # Copyright 2017 Google Inc. | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
| set -xe | ||
| mvn clean appengine:update \ | ||
| -Dappengine.additionalParams="--service_account_json_key_file=${GOOGLE_APPLICATION_CREDENTIALS}" \ | ||
| -Dappengine.appId="${GOOGLE_PROJECT_ID}" \ | ||
| -Dappengine.version="${GOOGLE_VERSION_ID}" \ | ||
| -DskipTests=true | ||
| curl -f "http://${GOOGLE_VERSION_ID}-dot-${GOOGLE_PROJECT_ID}.appspot.com/" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| #!/usr/bin/env bash | ||
| # Copyright 2017 Google Inc. | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
| # Fail on non-zero return and print command to stdout | ||
| set -xe | ||
| # Jenkins Test Script | ||
| function runtests () { | ||
| curl -X GET \ | ||
| "https://${2}-dot-${1}.appspot.com/api/users" | \ | ||
| grep "^\\[" | ||
| } | ||
| # Jenkins provides values for GOOGLE_PROJECT_ID and GOOGLE_VERSION_ID | ||
| # Test with Maven | ||
| mvn clean appengine:deploy \ | ||
| -Dapp.deploy.version="${GOOGLE_VERSION_ID}" \ | ||
| -Dapp.deploy.promote=false | ||
| # End-2-End tests | ||
| runtests "${GOOGLE_PROJECT_ID}" "${GOOGLE_VERSION_ID}" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| #!/usr/bin/env bash | ||
| # Copyright 2017 Google Inc. | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
| set -x | ||
| shopt -s globstar | ||
| delete_app_version() { | ||
| yes | gcloud --project="$GOOGLE_PROJECT_ID" \ | ||
| app versions delete "$GOOGLE_VERSION_ID" | ||
| } | ||
| handle_error() { | ||
| errcode=$? # Remember the error code so we can exit with it after cleanup | ||
| # Clean up | ||
| delete_app_version | ||
| exit $errcode | ||
| } | ||
| trap handle_error ERR | ||
| # First, style-check the shell scripts | ||
| shellcheck ./**/*.sh | ||
| # Find all jenkins.sh's and run them. | ||
| find . -mindepth 2 -maxdepth 5 -name jenkins.sh -type f | while read path; do | ||
| ( | ||
| pushd "${path%jenkins.sh}" | ||
Contributor 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. % not matched. ContributorAuthor 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. Doesn't have to be: http://wiki.bash-hackers.org/syntax/pe#substring_removal | ||
| /bin/bash ./jenkins.sh | ||
| ) | ||
| done | ||
| delete_app_version | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you check any of the results?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just moved this wholesale from the jenkins script, so don't know much about it. Presumably it's just to make sure it returns a 200, and it looks like curl returns a non-zero exit code if it doesn't.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correct. The
curl -fis checking for a non-successful response.Obviously we might want to check for more than just the error code, but this actually catches quite a lot of possible errors.