Home
last modified time | relevance | path

Searched +full:owl +full:- +full:bot +full:- +full:postprocessor (Results 1 – 8 of 8) sorted by relevance

/external/google-cloud-java/owl-bot-postprocessor/
DREADME.md1 # Docker container for Owl Bot Postprocessor
3 This container runs when Owl Bot Postprocessor runs on this google-cloud-java
4 monorepo. The Cloud Build in the repo-automation-bots GCP project publishes
5 `gcr.io/cloud-devrel-public-resources/owlbot-java-monorepo` image.
7 Note that the split repositories (such as [googleapis/java-bigquery](
8 https://github.com/googleapis/java-bigquery)) continue to use the
9 `gcr.io/cloud-devrel-public-resources/owlbot-java` image, maintained in
14 This separation allows us to focus on monorepo-specific postprocessor logic in
15 this `owlbot-java-monorepo` image, without interfering the split repositories.
21 postprocessor logic into the container. Rather, the container executes scripts
[all …]
DDockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
15 # Specifying our own image is more reliable than 3rd-party image, which
17 FROM gcr.io/cloud-devrel-public-resources/java17
19 RUN apt-get update && \
20 apt-get -y upgrade && \
21 apt-get install wget && \
22 apt-get install unzip && \
23 apt -y install git && \
24 …apt-get install -y --no-install-recommends libxml2-utils apt-transport-https ca-certificates gnupg…
25 rm -rf /var/cache/apt
[all …]
Dcloudbuild.yaml3 - name: 'gcr.io/cloud-builders/git'
6 - '-c'
7- 'git log -1 --format="%s%n%n%b%nSource-Link: https://github.com/googleapis/google-cloud-java/com…
9 - name: 'gcr.io/cloud-builders/docker'
11 '-t', 'gcr.io/cloud-devrel-public-resources/owlbot-java-monorepo:$SHORT_SHA',
12 '-t', 'gcr.io/cloud-devrel-public-resources/owlbot-java-monorepo:latest',
13 '-f', 'owl-bot-postprocessor/Dockerfile', 'owl-bot-postprocessor' ]
16 - gcr.io/cloud-devrel-public-resources/owlbot-java-monorepo:$SHORT_SHA
17 - gcr.io/cloud-devrel-public-resources/owlbot-java-monorepo:latest
/external/google-cloud-java/.github/
Dsnippet-bot.yml2 - owl-bot-postprocessor/synthtool/gcp/snippets.py
3 - owl-bot-postprocessor/synthtool/gcp/templates/java_library/samples/install-without-bom/pom.xml
/external/google-cloud-java/
Drenovate.json14 "google-cloud-pom-parent/pom.xml",
15 "google-cloud-jar-parent/pom.xml",
16 "java-shared-dependencies/first-party-dependencies/pom.xml",
17 "java-shared-dependencies/third-party-dependencies/pom.xml",
18 ".kokoro/nightly/graalvm-native*.cfg",
19 ".kokoro/nightly/graalvm-sub-jobs/native*/common.cfg",
20 ".kokoro/presubmit/graalvm-native*.cfg",
21 … "owl-bot-postprocessor/synthtool/gcp/templates/java-library/.kokoro/presubmit/graalvm-native*.cfg"
25 "fileMatch": ["^.kokoro/nightly/graalvm-native.*.cfg$",
26 "^.kokoro/presubmit/graalvm-native.*.cfg$",
[all …]
/external/google-cloud-java/generation/
Dset_owlbot_config.sh9 # $ set_owlbot_config.sh java-dataform/.OwlBot.yaml
12 # $ for F in `find . -maxdepth 2 -name '.OwlBot.yaml'`; do sh generation/set_owlbot_config.sh $F; d…
14 for F in `find . -maxdepth 2 -name '.OwlBot.yaml'`;
19 if [ -z "${OWLBOT_FILE}" ]; then
24 if [ ! -r "${OWLBOT_FILE}" ]; then
32 if [ ! -d "${module_name}" ]; then
37 # For deep-remove-regex and deep-preserve-regex fields
38 sed -i.bak "s|\"/grpc-google|\"/${module_name}/grpc-google|" "${OWLBOT_FILE}" && rm "${OWLBOT_FILE}…
39 sed -i.bak "s|\"/proto-google|\"/${module_name}/proto-google|" "${OWLBOT_FILE}" && rm "${OWLBOT_FIL…
40 sed -i.bak "s|\"/google-\.\*|\"/${module_name}/google-.*|" "${OWLBOT_FILE}" && rm "${OWLBOT_FILE}".…
[all …]
Dmerge_repository.sh3 # Merging repository to google-cloud-java using git-filter-repo.
4 # https://stackoverflow.com/questions/1425892/how-do-you-merge-two-git-repositories
7 # cd google-cloud-java
15 # cd generation/monorepo/google-cloud-java-merged
16 # git checkout -b merge_repositories
17 # gh pr create --title 'chore: merge new repository into google-cloud-java' --body ''
19 set -xe
21 [ -z "`git config user.email`" ] && git config --global user.email "${USERNAME:-script}@google.com"
22 [ -z "`git config user.name`" ] && git config --global user.name "${USERNAME:-script}"
26 rm -rf monorepo
[all …]
Dcheck_non_release_please_versions.sh3 set -e
6 for pomFile in $(find . -mindepth 2 -name pom.xml | sort ); do
7 if [[ "${pomFile}" =~ .*google-cloud-jar-parent.* ]] || \
8 [[ "${pomFile}" =~ .*google-cloud-pom-parent.* ]] || \
10 [[ "${pomFile}" =~ .*java-shared-dependencies*. ]]; then
13 if [[ "${pomFile}" =~ .*owl-bot-postprocessor.* ]]; then
18 if grep -n '<version>.*</version>' "$pomFile" | grep -v 'x-version-update'; then
19 echo "Found version declaration(s) without x-version-update in: $pomFile"
21 echo "---------------------------------------------------------"
27 if [[ $violations -gt 0 ]]; then