Skip to content
This repository was archived by the owner on Sep 16, 2023. It is now read-only.

Commit 2856de7

Browse files
chore: Adding release-please annotations to readme files (#1781) (#356)
* chore: Adding release-please annotations to readme files (#1781) * chore: Adding release-please annotations to readme files Source-Link: googleapis/synthtool@327d46f Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:bf5639d265d70f6137d57d42ae781a6f4e26d4085ff4e018e71350480f9b3996 * remove owlbot files --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Tomo Suzuki <suztomo@google.com>
1 parent 79c53ed commit 2856de7

11 files changed

Lines changed: 145 additions & 236 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ about: Create a report to help us improve
44

55
---
66

7+
:bus: This library has moved to
8+
[google-cloud-java/java-profiler](
9+
https://github.com/googleapis/google-cloud-java/tree/main/java-profiler).
10+
This repository will be archived in the future.
11+
712
Thanks for stopping by to let us know something could be better!
813

914
**PLEASE READ**: If you have a support contract with Google, please create an issue in the [support console](https://cloud.google.com/support/) instead of filing on GitHub. This will ensure a timely response.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ about: Suggest an idea for this library
44

55
---
66

7+
:bus: This library has moved to
8+
[google-cloud-java/java-profiler](
9+
https://github.com/googleapis/google-cloud-java/tree/main/java-profiler).
10+
This repository will be archived in the future.
11+
712
Thanks for stopping by to let us know something could be better!
813

914
**PLEASE READ**: If you have a support contract with Google, please create an issue in the [support console](https://cloud.google.com/support/) instead of filing on GitHub. This will ensure a timely response.

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "maven"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
# Disable version updates for Maven dependencies
8+
open-pull-requests-limit: 0
9+
- package-ecosystem: "pip"
10+
directory: "/"
11+
schedule:
12+
interval: "daily"
13+
# Disable version updates for pip dependencies
14+
open-pull-requests-limit: 0

.kokoro/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ integration)
7171
;;
7272
graalvm)
7373
# Run Unit and Integration Tests with Native Image
74-
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test
74+
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative test
7575
RETURN_CODE=$?
7676
;;
7777
graalvm17)
7878
# Run Unit and Integration Tests with Native Image
79-
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test
79+
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative test
8080
RETURN_CODE=$?
8181
;;
8282
samples)

.kokoro/dependencies.sh

Lines changed: 0 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -57,54 +57,3 @@ retry_with_backoff 3 10 \
5757
-Dclirr.skip=true
5858

5959
mvn -B dependency:analyze -DfailOnWarning=true
60-
61-
echo "****************** DEPENDENCY LIST COMPLETENESS CHECK *******************"
62-
## Run dependency list completeness check
63-
function completenessCheck() {
64-
# Output dep list with compile scope generated using the original pom
65-
# Running mvn dependency:list on Java versions that support modules will also include the module of the dependency.
66-
# This is stripped from the output as it is not present in the flattened pom.
67-
# Only dependencies with 'compile' or 'runtime' scope are included from original dependency list.
68-
msg "Generating dependency list using original pom..."
69-
mvn dependency:list -f pom.xml -DincludeScope=runtime -Dsort=true | grep '\[INFO] .*:.*:.*:.*:.*' | sed -e 's/ --.*//' >.org-list.txt
70-
71-
# Output dep list generated using the flattened pom (only 'compile' and 'runtime' scopes)
72-
msg "Generating dependency list using flattened pom..."
73-
mvn dependency:list -f .flattened-pom.xml -DincludeScope=runtime -Dsort=true | grep '\[INFO] .*:.*:.*:.*:.*' >.new-list.txt
74-
75-
# Compare two dependency lists
76-
msg "Comparing dependency lists..."
77-
diff .org-list.txt .new-list.txt >.diff.txt
78-
if [[ $? == 0 ]]
79-
then
80-
msg "Success. No diff!"
81-
else
82-
msg "Diff found. See below: "
83-
msg "You can also check .diff.txt file located in $1."
84-
cat .diff.txt
85-
return 1
86-
fi
87-
}
88-
89-
# Allow failures to continue running the script
90-
set +e
91-
92-
error_count=0
93-
for path in **/.flattened-pom.xml
94-
do
95-
# Check flattened pom in each dir that contains it for completeness
96-
dir=$(dirname "$path")
97-
pushd "$dir"
98-
completenessCheck "$dir"
99-
error_count=$(($error_count + $?))
100-
popd
101-
done
102-
103-
if [[ $error_count == 0 ]]
104-
then
105-
msg "All checks passed."
106-
exit 0
107-
else
108-
msg "Errors found. See log statements above."
109-
exit 1
110-
fi

.kokoro/presubmit/graalvm-native-17.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Configure the docker image for kokoro-trampoline.
44
env_vars: {
55
key: "TRAMPOLINE_IMAGE"
6-
value: "gcr.io/cloud-devrel-kokoro-resources/graalvm17"
6+
value: "gcr.io/cloud-devrel-kokoro-resources/graalvm17:22.3.0"
77
}
88

99
env_vars: {

.kokoro/presubmit/graalvm-native.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Configure the docker image for kokoro-trampoline.
44
env_vars: {
55
key: "TRAMPOLINE_IMAGE"
6-
value: "gcr.io/cloud-devrel-kokoro-resources/graalvm"
6+
value: "gcr.io/cloud-devrel-kokoro-resources/graalvm:22.3.0"
77
}
88

99
env_vars: {

.kokoro/requirements.in

Lines changed: 6 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,6 @@
1-
gcp-docuploader==0.6.3
2-
google-crc32c==1.3.0
3-
googleapis-common-protos==1.56.3
4-
gcp-releasetool==1.8.7
5-
cachetools==4.2.4
6-
cffi==1.15.1
7-
jeepney==0.7.1
8-
jinja2==3.0.3
9-
markupsafe==2.0.1
10-
keyring==23.4.1
11-
packaging==21.3
12-
protobuf==3.19.5
13-
pyjwt==2.4.0
14-
pyparsing==3.0.9
15-
pycparser==2.21
16-
pyperclip==1.8.2
17-
python-dateutil==2.8.2
18-
requests==2.27.1
19-
importlib-metadata==4.8.3
20-
zipp==3.6.0
21-
google_api_core==2.8.2
22-
google-cloud-storage==2.0.0
23-
google-cloud-core==2.3.1
24-
typing-extensions==4.1.1
25-
urllib3==1.26.12
26-
zipp==3.6.0
27-
rsa==4.9
28-
six==1.16.0
29-
attrs==22.1.0
30-
google-auth==2.11.0
31-
idna==3.4
1+
gcp-docuploader
2+
gcp-releasetool>=1.10.5 # required for compatibility with cryptography>=39.x
3+
wheel
4+
setuptools
5+
typing-extensions
6+
click<8.1.0

0 commit comments

Comments
 (0)