Skip to content

Commit b549155

Browse files
authored
Merge branch 'main' into credential_provider
2 parents 08afb7d + a898920 commit b549155

18 files changed

Lines changed: 133 additions & 52 deletions

.github/workflows/codeql.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ permissions:
3636
jobs:
3737
analyze:
3838
name: Analyze Actions
39-
if: ${{ github.event_name != 'pull_request' || (!contains(github.event.pull_request.labels.*.name, 'skip-ci') && !contains(github.event.pull_request.title, '[skip ci]')) }}
4039
runs-on: ubuntu-24.04
4140
permissions:
4241
contents: read

.github/workflows/iceberg_spark_test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ jobs:
6666
# Build native library once and share with all test jobs
6767
build-native:
6868
name: Build Native Library
69-
if: ${{ github.event_name != 'pull_request' || (!contains(github.event.pull_request.labels.*.name, 'skip-ci') && !contains(github.event.pull_request.title, '[skip ci]')) }}
7069
runs-on: ubuntu-24.04
7170
container:
7271
image: amd64/rust

.github/workflows/miri.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ on:
5151
jobs:
5252
miri:
5353
name: "Miri"
54-
if: ${{ github.event_name != 'pull_request' || (!contains(github.event.pull_request.labels.*.name, 'skip-ci') && !contains(github.event.pull_request.title, '[skip ci]')) }}
5554
runs-on: ubuntu-24.04
5655
steps:
5756
- uses: actions/checkout@v6

.github/workflows/pr_benchmark_check.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ env:
4646
jobs:
4747
benchmark-check:
4848
name: Benchmark Compile & Lint Check
49-
if: ${{ github.event_name != 'pull_request' || (!contains(github.event.pull_request.labels.*.name, 'skip-ci') && !contains(github.event.pull_request.title, '[skip ci]')) }}
5049
runs-on: ubuntu-24.04
5150
container:
5251
image: amd64/rust

.github/workflows/pr_build_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ jobs:
6363
# Fast lint check - gates all other jobs
6464
lint:
6565
name: Lint
66-
if: ${{ github.event_name != 'pull_request' || (!contains(github.event.pull_request.labels.*.name, 'skip-ci') && !contains(github.event.pull_request.title, '[skip ci]')) }}
6766
runs-on: ubuntu-24.04
6867
container:
6968
image: amd64/rust
@@ -329,6 +328,7 @@ jobs:
329328
org.apache.comet.parquet.ParquetReadV1Suite
330329
org.apache.comet.parquet.ParquetReadV2Suite
331330
org.apache.comet.parquet.ParquetReadFromFakeHadoopFsSuite
331+
org.apache.comet.parquet.ParquetTimestampLtzAsNtzSuite
332332
org.apache.spark.sql.comet.ParquetDatetimeRebaseV1Suite
333333
org.apache.spark.sql.comet.ParquetDatetimeRebaseV2Suite
334334
org.apache.spark.sql.comet.ParquetEncryptionITCase

.github/workflows/pr_build_macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ jobs:
5959
# Fast lint check - gates all other jobs (runs on Linux for cost efficiency)
6060
lint:
6161
name: Lint
62-
if: ${{ github.event_name != 'pull_request' || (!contains(github.event.pull_request.labels.*.name, 'skip-ci') && !contains(github.event.pull_request.title, '[skip ci]')) }}
6362
runs-on: ubuntu-latest
6463
container:
6564
image: amd64/rust
@@ -177,6 +176,7 @@ jobs:
177176
org.apache.comet.parquet.ParquetReadV1Suite
178177
org.apache.comet.parquet.ParquetReadV2Suite
179178
org.apache.comet.parquet.ParquetReadFromFakeHadoopFsSuite
179+
org.apache.comet.parquet.ParquetTimestampLtzAsNtzSuite
180180
org.apache.spark.sql.comet.ParquetDatetimeRebaseV1Suite
181181
org.apache.spark.sql.comet.ParquetDatetimeRebaseV2Suite
182182
org.apache.spark.sql.comet.ParquetEncryptionITCase

.github/workflows/pr_markdown_format.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ on:
2828

2929
jobs:
3030
prettier-check:
31-
if: ${{ github.event_name != 'pull_request' || (!contains(github.event.pull_request.labels.*.name, 'skip-ci') && !contains(github.event.pull_request.title, '[skip ci]')) }}
3231
runs-on: ubuntu-24.04
3332
steps:
3433
- uses: actions/checkout@v6

.github/workflows/pr_missing_suites.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ on:
3030

3131
jobs:
3232
check-missing-suites:
33-
if: ${{ github.event_name != 'pull_request' || (!contains(github.event.pull_request.labels.*.name, 'skip-ci') && !contains(github.event.pull_request.title, '[skip ci]')) }}
3433
runs-on: ubuntu-24.04
3534
steps:
3635
- uses: actions/checkout@v6

.github/workflows/pr_rat_check.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ on:
3535
jobs:
3636
rat-check:
3737
name: RAT License Check
38-
if: ${{ github.event_name != 'pull_request' || (!contains(github.event.pull_request.labels.*.name, 'skip-ci') && !contains(github.event.pull_request.title, '[skip ci]')) }}
3938
runs-on: ubuntu-slim
4039
steps:
4140
- uses: actions/checkout@v6

.github/workflows/pr_title_check.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ on:
2727

2828
jobs:
2929
check-pr-title:
30-
if: ${{ github.event_name != 'pull_request' || (!contains(github.event.pull_request.labels.*.name, 'skip-ci') && !contains(github.event.pull_request.title, '[skip ci]')) }}
3130
runs-on: ubuntu-24.04
3231
steps:
3332
- uses: actions/checkout@v6

0 commit comments

Comments
 (0)