Skip to content

Commit

Permalink
Fix broken lint and improve lint rules. (#30940)
Browse files Browse the repository at this point in the history
* Enable lint for all gradle and kts files

* Fix lint.
  • Loading branch information
tvalentyn authored Apr 12, 2024
1 parent cd368cb commit 0d5d567
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/beam_PreCommit_Whitespace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ on:
push:
tags: ['v*']
branches: ['master', 'release-*']
paths: ['**.md', '**.build.gradle', 'build.gradle.kts', '.github/workflows/beam_PreCommit_Whitespace.yml']
paths: ['**.md', '**.gradle', '**.kts', '.github/workflows/beam_PreCommit_Whitespace.yml']
pull_request_target:
branches: ['master', 'release-*']
paths: ['**.md', '**.build.gradle', 'build.gradle.kts', 'release/trigger_all_tests.json', '.github/trigger_files/beam_PreCommit_Whitespace.json']
paths: ['**.md', '**.gradle', '**.kts', 'release/trigger_all_tests.json', '.github/trigger_files/beam_PreCommit_Whitespace.json']
issue_comment:
types: [created]
schedule:
Expand Down
9 changes: 4 additions & 5 deletions it/google-cloud-platform/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ dependencies {
testRuntimeOnly library.java.slf4j_simple
}


tasks.register(
"GCSPerformanceTest", IoPerformanceTestUtilities.IoPerformanceTest, project, 'google-cloud-platform', 'FileBasedIOLT',
['configuration':'large','project':'apache-beam-testing', 'artifactBucket':'io-performance-temp']
Expand Down Expand Up @@ -149,10 +148,10 @@ tasks.register(
+ System.properties
)
tasks.register(
"PubSubStressTestMedium", IoPerformanceTestUtilities.IoPerformanceTest, project, 'google-cloud-platform', 'PubSubIOST',
['configuration':'medium','project':'apache-beam-testing', 'artifactBucket':'io-performance-temp']
"PubSubStressTestMedium", IoPerformanceTestUtilities.IoPerformanceTest, project, 'google-cloud-platform', 'PubSubIOST',
['configuration':'medium','project':'apache-beam-testing', 'artifactBucket':'io-performance-temp']
+ System.properties)
tasks.register(
"PubSubStressTestLarge", IoPerformanceTestUtilities.IoPerformanceTest, project, 'google-cloud-platform', 'PubSubIOST',
['configuration':'large','project':'apache-beam-testing', 'artifactBucket':'io-performance-temp']
"PubSubStressTestLarge", IoPerformanceTestUtilities.IoPerformanceTest, project, 'google-cloud-platform', 'PubSubIOST',
['configuration':'large','project':'apache-beam-testing', 'artifactBucket':'io-performance-temp']
+ System.properties)

0 comments on commit 0d5d567

Please sign in to comment.