Skip to content

Commit 5a6a42a

Browse files
committed
Disable trying to add the new tests to presubmit.yaml
1 parent b2cea48 commit 5a6a42a

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

.github/workflows/presubmit.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,20 @@ jobs:
2121
steps:
2222
- name: checkout
2323
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
24-
- name: Set up JDK 21
25-
uses: actions/setup-java@v4
26-
with:
27-
java-version: 21
28-
distribution: 'jetbrains'
24+
# Allows the specification of a specific Java SDK
25+
# - name: Set up JDK 21
26+
# uses: actions/setup-java@v4
27+
# with:
28+
# java-version: 21
29+
# distribution: 'jetbrains'
2930
- name: build
3031
run: ./tool/github.sh
3132
checker:
3233
runs-on: ubuntu-latest
3334
strategy:
3435
fail-fast: true
3536
matrix:
36-
bot: [CHECK_BOT, DART_BOT, UNIT_TEST_BOT, VERIFY_BOT, INTEGRATION_BOT]
37+
bot: [CHECK_BOT, DART_BOT, UNIT_TEST_BOT, VERIFY_BOT] #, INTEGRATION_BOT]
3738
steps:
3839
- name: checkout
3940
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8

testSrc/integration/io/flutter/integrationTest/Setup.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,36 +54,36 @@ class Setup {
5454
}
5555
}
5656

57-
fun setupTestContextIC(hyphenateWithClass: String): IDETestContext {
57+
fun setupTestContextIC(hyphenateWithClass: String, projectInfoSpec: ProjectInfoSpec = NoProject): IDETestContext {
5858
return setupTestContext(
5959
"", IdeProductProvider.IC.copy(
6060
// Intellij Platform UI Platform Build Version -> https://plugins.jetbrains.com/docs/intellij/integration-tests-ui.html
6161
// buildNumber = "243.26574.91", //System.getProperty("uiPlatformBuildVersion"),
6262
buildNumber = "252.23892.409",
6363
buildType = BuildType.RELEASE.type
64-
)
64+
), projectInfoSpec
6565
)
6666
}
6767

68-
fun setupTestContextUE(hyphenateWithClass: String): IDETestContext {
68+
fun setupTestContextUE(hyphenateWithClass: String, projectInfoSpec: ProjectInfoSpec = NoProject): IDETestContext {
6969
return setupTestContext(
7070
"", IdeProductProvider.IU.copy(
7171
// Intellij Platform UI Platform Build Version -> https://plugins.jetbrains.com/docs/intellij/integration-tests-ui.html
7272
// buildNumber = "243.26574.91", //System.getProperty("uiPlatformBuildVersion"),
7373
buildNumber = "252.23892.409",
7474
buildType = BuildType.RELEASE.type
75-
)
75+
), projectInfoSpec
7676
)
7777
}
7878

79-
fun setupTestContextWS(hyphenateWithClass: String): IDETestContext {
79+
fun setupTestContextWS(hyphenateWithClass: String, projectInfoSpec: ProjectInfoSpec = NoProject): IDETestContext {
8080
return setupTestContext(
8181
"", IdeProductProvider.WS.copy(
8282
// Intellij Platform UI Platform Build Version -> https://plugins.jetbrains.com/docs/intellij/integration-tests-ui.html
8383
// buildNumber = "243.26574.91", //System.getProperty("uiPlatformBuildVersion"),
8484
buildNumber = "252.23892.411",
8585
buildType = BuildType.RELEASE.type
86-
)
86+
), projectInfoSpec
8787
)
8888
}
8989

0 commit comments

Comments
 (0)