-
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.
* Adding Kokoro build * Update BUILD (#50) * Update kokoro_build.sh * executable build * Update build.sh * Update BUILD (#53) * Update BUILD * Update build.sh * Update BUILD * Update kokoro_build.sh * Create build.sh * Update kokoro_build.sh * Delete build.sh * Update build.sh * Update build.sh
- Loading branch information
1 parent
56405da
commit c87bbe7
Showing
4 changed files
with
39 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# -*- protobuffer -*- | ||
# proto-file: google3/devtools/kokoro/config/proto/build.proto | ||
# proto-message: BuildConfig | ||
|
||
# Location of the bash script. Should have value <github_scm.name>/<path_from_repository_root>. | ||
# github_scm.name is specified in the job configuration (next section). | ||
build_file: "hadoop-migration-assessment-tools/kokoro/gcp_ubuntu_docker/kokoro_build.sh" |
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,19 @@ | ||
#!/bin/bash | ||
|
||
# Fail on any error. | ||
set -e | ||
|
||
# Display commands being run. | ||
# WARNING: please only enable 'set -x' if necessary for debugging, and be very | ||
# careful if you handle credentials (e.g. from Keystore) with 'set -x': | ||
# statements like "export VAR=$(cat /tmp/keystore/credentials)" will result in | ||
# the credentials being printed in build logs. | ||
# Additionally, recursive invocation with credentials as command-line | ||
# parameters, will print the full command, with credentials, in the build logs. | ||
# set -x | ||
|
||
# Code under repo is checked out to ${KOKORO_ARTIFACTS_DIR}/github. | ||
# The final directory name in this path is determined by the scm name specified | ||
# in the job configuration. | ||
cd "${KOKORO_ARTIFACTS_DIR}/github/hadoop-migration-assessment-tools/kokoro/scripts" | ||
./build.sh |
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,7 @@ | ||
# -*- protobuffer -*- | ||
# proto-file: google3/devtools/kokoro/config/proto/build.proto | ||
# proto-message: BuildConfig | ||
|
||
# Location of the bash script. Should have value <github_scm.name>/<path_from_repository_root>. | ||
# github_scm.name is specified in the job configuration (next section). | ||
build_file: "hadoop-migration-assessment-tools/kokoro/gcp_ubuntu_docker/kokoro_build.sh" |
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,6 @@ | ||
#!/bin/bash | ||
|
||
# Fail on any error. | ||
set -e | ||
cd ../../ | ||
bazel build //dist:all |