File tree Expand file tree Collapse file tree 5 files changed +32
-10
lines changed Expand file tree Collapse file tree 5 files changed +32
-10
lines changed Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
docker :
15
15
image : gcr.io/cloud-devrel-public-resources/owlbot-java:latest
16
- digest : sha256:c33bd13e1eab022b0499a3afbfb4b93ae10cb8ad89d8203a6343a88b1b78400f
17
- # created: 2023-06-21T18:48:32.287298785Z
16
+ digest : sha256:32851debfefed2b66038e0141f1b5c2103bb59ba80b7475adbc10ef7abab3de7
17
+ # created: 2023-06-22T15:06:52.039318836Z
Original file line number Diff line number Diff line change @@ -8,8 +8,7 @@ branchProtectionRules:
8
8
requiresCodeOwnerReviews : true
9
9
requiresStrictStatusChecks : false
10
10
requiredStatusCheckContexts :
11
- - dependencies (8)
12
- - dependencies (11)
11
+ - dependencies (17)
13
12
- lint
14
13
- clirr
15
14
- units (8)
Original file line number Diff line number Diff line change 25
25
strategy :
26
26
fail-fast : false
27
27
matrix :
28
- java : [8, 11, 17]
28
+ java : [11, 17]
29
29
steps :
30
30
- uses : actions/checkout@v3
31
31
- uses : actions/setup-java@v3
36
36
- run : .kokoro/build.sh
37
37
env :
38
38
JOB_TYPE : test
39
+ units-java8 :
40
+ # Building using Java 17 and run the tests with Java 8 runtime
41
+ name : " units (8)"
42
+ runs-on : ubuntu-latest
43
+ steps :
44
+ - uses : actions/checkout@v3
45
+ - uses : actions/setup-java@v3
46
+ with :
47
+ java-version : 8
48
+ distribution : zulu
49
+ - name : " Set jvm system property environment variable for surefire plugin (unit tests)"
50
+ # Maven surefire plugin (unit tests) allows us to specify JVM to run the tests.
51
+ # https://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html#jvm
52
+ run : echo "SUREFIRE_JVM_OPT=-Djvm=${JAVA_HOME}/bin/java" >> $GITHUB_ENV
53
+ shell : bash
54
+ - uses : actions/setup-java@v3
55
+ with :
56
+ java-version : 17
57
+ distribution : zulu
58
+ - run : .kokoro/build.sh
59
+ env :
60
+ JOB_TYPE : test
39
61
windows :
40
62
runs-on : windows-latest
41
63
steps :
54
76
runs-on : ubuntu-latest
55
77
strategy :
56
78
matrix :
57
- java : [8, 11, 17]
79
+ java : [17]
58
80
steps :
59
81
- uses : actions/checkout@v3
60
82
- uses : actions/setup-java@v3
Original file line number Diff line number Diff line change 47
47
48
48
case ${JOB_TYPE} in
49
49
test)
50
- mvn test -B -ntp -Dclirr.skip=true -Denforcer.skip=true
50
+ echo " SUREFIRE_JVM_OPT: ${SUREFIRE_JVM_OPT} "
51
+ mvn test -B -ntp -Dclirr.skip=true -Denforcer.skip=true ${SUREFIRE_JVM_OPT}
51
52
RETURN_CODE=$?
52
53
;;
53
54
lint)
Original file line number Diff line number Diff line change @@ -59,13 +59,13 @@ implementation 'com.google.cloud:google-cloud-logging'
59
59
If you are using Gradle without BOM, add this to your dependencies:
60
60
61
61
``` Groovy
62
- implementation 'com.google.cloud:google-cloud-logging:3.15.3 '
62
+ implementation 'com.google.cloud:google-cloud-logging:3.15.4 '
63
63
```
64
64
65
65
If you are using SBT, add this to your dependencies:
66
66
67
67
``` Scala
68
- libraryDependencies += " com.google.cloud" % " google-cloud-logging" % " 3.15.3 "
68
+ libraryDependencies += " com.google.cloud" % " google-cloud-logging" % " 3.15.4 "
69
69
```
70
70
<!-- {x-version-update-end} -->
71
71
@@ -452,7 +452,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
452
452
[ kokoro-badge-link-5 ] : http://storage.googleapis.com/cloud-devrel-public/java/badges/java-logging/java11.html
453
453
[ stability-image ] : https://img.shields.io/badge/stability-stable-green
454
454
[ maven-version-image ] : https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-logging.svg
455
- [ maven-version-link ] : https://central.sonatype.com/artifact/com.google.cloud/google-cloud-logging/3.15.3
455
+ [ maven-version-link ] : https://central.sonatype.com/artifact/com.google.cloud/google-cloud-logging/3.15.4
456
456
[ authentication ] : https://github.com/googleapis/google-cloud-java#authentication
457
457
[ auth-scopes ] : https://developers.google.com/identity/protocols/oauth2/scopes
458
458
[ predefined-iam-roles ] : https://cloud.google.com/iam/docs/understanding-roles#predefined_roles
You can’t perform that action at this time.
0 commit comments