-
Notifications
You must be signed in to change notification settings - Fork 453
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: regenerate common templates (#1263)
This PR was generated using Autosynth. 🌈 Synth log will be available here: https://source.cloud.google.com/results/invocations/0d4d941a-5efc-4e3b-ae4a-c5a7ef2f7187/targets - [ ] To automatically regenerate this PR, check this box. Source-Link: googleapis/synthtool@6946fd7 Source-Link: googleapis/synthtool@1aeca92 Source-Link: googleapis/synthtool@b416a7b Source-Link: googleapis/synthtool@f327d3b Source-Link: googleapis/synthtool@2414b81 Source-Link: googleapis/synthtool@692715c Source-Link: googleapis/synthtool@27b2d4f Source-Link: googleapis/synthtool@140ba24 Source-Link: googleapis/synthtool@e935c9e Source-Link: googleapis/synthtool@5de29e9 Source-Link: googleapis/synthtool@d1bb917
- Loading branch information
1 parent
20f2bd0
commit 21a4a5a
Showing
12 changed files
with
121 additions
and
64 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
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
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,14 @@ | ||
on: | ||
pull_request: | ||
name: samples | ||
jobs: | ||
checkstyle: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-java@v1 | ||
with: | ||
java-version: 8 | ||
- name: Run checkstyle | ||
run: mvn -P lint --quiet --batch-mode checkstyle:check | ||
working-directory: samples/snippets |
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
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
This file was deleted.
Oops, something went wrong.
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
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
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,30 @@ | ||
# Format: //devtools/kokoro/config/proto/build.proto | ||
|
||
# cloud-rad production | ||
env_vars: { | ||
key: "STAGING_BUCKET_V2" | ||
value: "docs-staging-v2" | ||
} | ||
|
||
# Configure the docker image for kokoro-trampoline | ||
env_vars: { | ||
key: "TRAMPOLINE_IMAGE" | ||
value: "gcr.io/cloud-devrel-kokoro-resources/java11" | ||
} | ||
|
||
env_vars: { | ||
key: "TRAMPOLINE_BUILD_FILE" | ||
value: "github/google-http-java-client/.kokoro/release/publish_javadoc11.sh" | ||
} | ||
|
||
before_action { | ||
fetch_keystore { | ||
keystore_resource { | ||
keystore_config_id: 73713 | ||
keyname: "docuploader_service_account" | ||
} | ||
} | ||
} | ||
|
||
# Downloads docfx doclet resource. This will be in ${KOKORO_GFILE_DIR}/<doclet name> | ||
gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/docfx" |
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,55 @@ | ||
#!/bin/bash | ||
# Copyright 2021 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 -eo pipefail | ||
|
||
if [[ -z "${CREDENTIALS}" ]]; then | ||
CREDENTIALS=${KOKORO_KEYSTORE_DIR}/73713_docuploader_service_account | ||
fi | ||
|
||
if [[ -z "${STAGING_BUCKET_V2}" ]]; then | ||
echo "Need to set STAGING_BUCKET_V2 environment variable" | ||
exit 1 | ||
fi | ||
|
||
# work from the git root directory | ||
pushd $(dirname "$0")/../../ | ||
|
||
# install docuploader package | ||
python3 -m pip install gcp-docuploader | ||
|
||
# compile all packages | ||
mvn clean install -B -q -DskipTests=true | ||
|
||
export NAME=google-http-client | ||
export VERSION=$(grep ${NAME}: versions.txt | cut -d: -f3) | ||
|
||
# V3 generates docfx yml from javadoc | ||
# generate yml | ||
mvn clean site -B -q -P docFX | ||
|
||
pushd target/docfx-yml | ||
|
||
# create metadata | ||
python3 -m docuploader create-metadata \ | ||
--name ${NAME} \ | ||
--version ${VERSION} \ | ||
--language java | ||
|
||
# upload yml to production bucket | ||
python3 -m docuploader upload . \ | ||
--credentials ${CREDENTIALS} \ | ||
--staging-bucket ${STAGING_BUCKET_V2} \ | ||
--destination-prefix docfx- |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
Apache License | ||
Version 2.0, January 2004 | ||
http://www.apache.org/licenses/ | ||
|
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