Skip to content

Commit b836b29

Browse files
authored
Merge branch 'main' into generate-libraries-main
2 parents 1a053f1 + 458eb10 commit b836b29

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
gcr.io/cloud-devrel-public-resources/java-library-generation:"${library_generation_image_tag}" \
128128
/src/library_generation/cli/entry_point.py validate-generation-config
129129
env:
130-
library_generation_image_tag: 2.60.0
130+
library_generation_image_tag: 2.60.1
131131
workspace_name: /workspace
132132

133133
# TODO: Uncomment the needed Github Actions

.github/workflows/generated_files_sync.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
pull_request:
2121
name: generation diff
2222
env:
23-
library_generation_image_tag: 2.60.0
23+
library_generation_image_tag: 2.60.1
2424
jobs:
2525
root-pom:
2626
# root pom.xml does not have diff from generated one

java-network-management/owlbot.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,21 @@
101101
r'\s+@Test\n\s+public void testIamPermissionsTest\(\) throws Exception.*',
102102
'@Ignore("See: https://github.com/googleapis/sdk-platform-java/issues/1839")@Test\npublic void testIamPermissionsTest() throws Exception {'
103103
)
104+
s.replace(
105+
v1beta1_vpcflowlogs_file_name,
106+
r'\s+@Test\n\s+public void createVpcFlowLogsConfigTest3\(\) throws Exception.*',
107+
'@Ignore("See: https://github.com/googleapis/sdk-platform-java/issues/1839")@Test\npublic void createVpcFlowLogsConfigTest3() throws Exception {'
108+
)
109+
s.replace(
110+
v1beta1_vpcflowlogs_file_name,
111+
r'\s+@Test\n\s+public void createVpcFlowLogsConfigTest4\(\) throws Exception.*',
112+
'@Ignore("See: https://github.com/googleapis/sdk-platform-java/issues/1839")@Test\npublic void createVpcFlowLogsConfigTest4() throws Exception {'
113+
)
114+
s.replace(
115+
v1beta1_vpcflowlogs_file_name,
116+
r'\s+@Test\n\s+public void listVpcFlowLogsConfigsTest2\(\) throws Exception.*',
117+
'@Ignore("See: https://github.com/googleapis/sdk-platform-java/issues/1839")@Test\npublic void listVpcFlowLogsConfigsTest2() throws Exception {'
118+
)
104119
s.move(library)
105120

106121
s.remove_staging_dirs()

0 commit comments

Comments
 (0)