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

Commit e1da5c6

Browse files
build(java): use ENABLE_FLAKYBOT env variable (#1175) (#211)
Kokoro job config now supports both environment variables during this migration period. Source-Link: googleapis/synthtool@ff01716 Post-Processor: gcr.io/repo-automation-bots/owlbot-java:latest@sha256:8e27e5a7297b40eca3ab46ae67f10c575813a85c673839030aa161d0818f3a24
1 parent b577b1a commit e1da5c6

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/.OwlBot.lock.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
docker:
22
image: gcr.io/repo-automation-bots/owlbot-java:latest
3-
digest: sha256:12cbdc4f137152a1a8b83f50ebc1a4098be0d3baff78b46efaec306f7cfafd13
3+
digest: sha256:8e27e5a7297b40eca3ab46ae67f10c575813a85c673839030aa161d0818f3a24

.kokoro/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ fi
115115
# fix output location of logs
116116
bash .kokoro/coerce_logs.sh
117117

118-
if [[ "${ENABLE_BUILD_COP}" == "true" ]]
118+
if [[ "${ENABLE_FLAKYBOT}" == "true" ]]
119119
then
120120
chmod +x ${KOKORO_GFILE_DIR}/linux_amd64/flakybot
121121
${KOKORO_GFILE_DIR}/linux_amd64/flakybot -repo=googleapis/java-video-transcoder

.kokoro/nightly/integration.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ env_vars: {
2222
}
2323

2424
env_vars: {
25-
key: "ENABLE_BUILD_COP"
25+
key: "ENABLE_FLAKYBOT"
2626
value: "true"
2727
}
2828

.kokoro/nightly/samples.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ env_vars: {
3333
}
3434

3535
env_vars: {
36-
key: "ENABLE_BUILD_COP"
36+
key: "ENABLE_FLAKYBOT"
3737
value: "true"
3838
}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@ If you are using Maven, add this to your pom.xml file:
2222
<dependency>
2323
<groupId>com.google.cloud</groupId>
2424
<artifactId>google-cloud-video-transcoder</artifactId>
25-
<version>0.3.0</version>
25+
<version>0.3.1</version>
2626
</dependency>
2727
```
2828

2929
If you are using Gradle without BOM, add this to your dependencies
3030

3131
```Groovy
32-
compile 'com.google.cloud:google-cloud-video-transcoder:0.3.0'
32+
compile 'com.google.cloud:google-cloud-video-transcoder:0.3.1'
3333
```
3434

3535
If you are using SBT, add this to your dependencies
3636

3737
```Scala
38-
libraryDependencies += "com.google.cloud" % "google-cloud-video-transcoder" % "0.3.0"
38+
libraryDependencies += "com.google.cloud" % "google-cloud-video-transcoder" % "0.3.1"
3939
```
4040

4141
## Authentication

0 commit comments

Comments
 (0)