Skip to content

Commit 9a2c40c

Browse files
committed
chore: fix pr_build*.yml
1 parent 5c76f35 commit 9a2c40c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/pr_build_linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151
org.apache.comet.objectstore.NativeConfigSuite
152152
- name: "sql"
153153
value: |
154-
${{ matrix.profile.maven_opts != 'Spark 3.4, JDK 11, Scala 2.12' && 'org.apache.spark.sql.CometToPrettyStringSuite' || ''}}
154+
org.apache.spark.sql.CometToPrettyStringSuite
155155
fail-fast: false
156156
name: ${{ matrix.os }}/${{ matrix.profile.name }} [${{ matrix.suite.name }}]
157157
runs-on: ${{ matrix.os }}
@@ -171,7 +171,7 @@ jobs:
171171
uses: ./.github/actions/java-test
172172
with:
173173
artifact_name: ${{ matrix.os }}-${{ matrix.profile.name }}-${{ matrix.suite.name }}-${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}
174-
suites: ${{ matrix.suite.value }}
174+
suites: ${{ matrix.suite.name == 'sql' && matrix.profile.name == 'Spark 3.4, JDK 11, Scala 2.12' && '' || matrix.suite.value }}
175175
maven_opts: ${{ matrix.profile.maven_opts }}
176176
scan_impl: ${{ matrix.profile.scan_impl }}
177177
upload-test-reports: true

.github/workflows/pr_build_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
org.apache.comet.objectstore.NativeConfigSuite
117117
- name: "sql"
118118
value: |
119-
${{ matrix.profile.maven_opts != 'Spark 3.4, JDK 11, Scala 2.12' && 'org.apache.spark.sql.CometToPrettyStringSuite' || ''}}
119+
org.apache.spark.sql.CometToPrettyStringSuite
120120
fail-fast: false
121121
name: ${{ matrix.os }}/${{ matrix.profile.name }} [${{ matrix.suite.name }}]
122122
runs-on: ${{ matrix.os }}
@@ -133,5 +133,5 @@ jobs:
133133
uses: ./.github/actions/java-test
134134
with:
135135
artifact_name: ${{ matrix.os }}-${{ matrix.profile.name }}-${{ matrix.suite.name }}-${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}
136-
suites: ${{ matrix.suite.value }}
136+
suites: ${{ matrix.suite.name == 'sql' && matrix.profile.name == 'Spark 3.4, JDK 11, Scala 2.12' && '' || matrix.suite.value }}
137137
maven_opts: ${{ matrix.profile.maven_opts }}

0 commit comments

Comments
 (0)