Skip to content

Commit a03ed9c

Browse files
committed
improve: run pr-s checks for v5.3 (#3042)
Signed-off-by: Attila Mészáros <[email protected]>
1 parent 451bcdf commit a03ed9c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/e2e-test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@ on:
66
paths-ignore:
77
- 'docs/**'
88
- 'adr/**'
9-
branches: [ main, next ]
9+
branches: [ main, next, v5.3 ]
1010
push:
1111
paths-ignore:
1212
- 'docs/**'
1313
- 'adr/**'
1414
branches:
1515
- main
1616
- next
17+
- v5.3
1718

1819
jobs:
1920
sample_operators_tests:

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
paths-ignore:
1212
- 'docs/**'
1313
- 'adr/**'
14-
branches: [ main, v1, v2, v3, next ]
14+
branches: [ main, v1, v2, v3, next, v5.3 ]
1515
workflow_dispatch:
1616
jobs:
1717
check_format_and_unit_tests:

operator-framework-core/src/test/java/io/javaoperatorsdk/operator/api/reconciler/PrimaryUpdateAndCacheUtilsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ public void compareResourceVersionsTest() {
213213
// naive performance test that compares the work case scenario for the parsing and non-parsing
214214
// variants
215215
@Test
216-
@Disabled("test sometimes fails, we plan to iterate over it and related features for 5.3")
216+
@Disabled
217217
public void compareResourcePerformanceTest() {
218218
var execNum = 30000000;
219219
var startTime = System.currentTimeMillis();

0 commit comments

Comments
 (0)