Skip to content

Commit ce3cc50

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

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import java.util.function.UnaryOperator;
2020

2121
import org.junit.jupiter.api.BeforeEach;
22+
import org.junit.jupiter.api.Disabled;
2223
import org.junit.jupiter.api.Test;
2324
import org.slf4j.Logger;
2425
import org.slf4j.LoggerFactory;
@@ -212,6 +213,7 @@ public void compareResourceVersionsTest() {
212213
// naive performance test that compares the work case scenario for the parsing and non-parsing
213214
// variants
214215
@Test
216+
@Disabled
215217
public void compareResourcePerformanceTest() {
216218
var execNum = 30000000;
217219
var startTime = System.currentTimeMillis();

0 commit comments

Comments
 (0)