Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 77 additions & 0 deletions .github/workflows/iceberg_spark_test_1_10.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

# Runs on every PR and on main. Latest supported Iceberg version, paired with
# Spark 3.5.
name: Iceberg Spark SQL Tests (Iceberg 1.10)

concurrency:
group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }}
cancel-in-progress: true

on:
push:
branches:
- main
paths:
- "native/**/src/**"
- "native/**/Cargo.toml"
- "native/Cargo.lock"
- "!native/hdfs/**"
- "!native/fs-hdfs/**"
- "common/src/main/**"
- "common/pom.xml"
- "spark/src/main/**"
- "!spark/src/main/scala/org/apache/comet/GenerateDocs.scala"
- "spark/pom.xml"
- "dev/diffs/iceberg/**"
- "pom.xml"
- "rust-toolchain.toml"
- ".github/workflows/iceberg_spark_test_1_10.yml"
- ".github/workflows/iceberg_spark_test_reusable.yml"
- ".github/actions/setup-builder/**"
- ".github/actions/setup-iceberg-builder/**"
pull_request:
paths:
- "native/**/src/**"
- "native/**/Cargo.toml"
- "native/Cargo.lock"
- "!native/hdfs/**"
- "!native/fs-hdfs/**"
- "common/src/main/**"
- "common/pom.xml"
- "spark/src/main/**"
- "!spark/src/main/scala/org/apache/comet/GenerateDocs.scala"
- "spark/pom.xml"
- "dev/diffs/iceberg/**"
- "pom.xml"
- "rust-toolchain.toml"
- ".github/workflows/iceberg_spark_test_1_10.yml"
- ".github/workflows/iceberg_spark_test_reusable.yml"
- ".github/actions/setup-builder/**"
- ".github/actions/setup-iceberg-builder/**"
workflow_dispatch:

jobs:
iceberg-spark:
uses: ./.github/workflows/iceberg_spark_test_reusable.yml
with:
iceberg-short: '1.10'
iceberg-full: '1.10.0'
spark-short: '3.5'
spark-full: '3.5.8'
java: 17

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}
Comment on lines +71 to +77
57 changes: 57 additions & 0 deletions .github/workflows/iceberg_spark_test_1_8.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

# Runs on main only. Oldest supported Iceberg version, paired with Spark 3.4.
name: Iceberg Spark SQL Tests (Iceberg 1.8)

concurrency:
group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }}
cancel-in-progress: true

on:
push:
branches:
- main
paths:
- "native/**/src/**"
- "native/**/Cargo.toml"
- "native/Cargo.lock"
- "!native/hdfs/**"
- "!native/fs-hdfs/**"
- "common/src/main/**"
- "common/pom.xml"
- "spark/src/main/**"
- "!spark/src/main/scala/org/apache/comet/GenerateDocs.scala"
- "spark/pom.xml"
- "dev/diffs/iceberg/**"
- "pom.xml"
- "rust-toolchain.toml"
- ".github/workflows/iceberg_spark_test_1_8.yml"
- ".github/workflows/iceberg_spark_test_reusable.yml"
- ".github/actions/setup-builder/**"
- ".github/actions/setup-iceberg-builder/**"
workflow_dispatch:

jobs:
iceberg-spark:
uses: ./.github/workflows/iceberg_spark_test_reusable.yml
with:
iceberg-short: '1.8'
iceberg-full: '1.8.1'
spark-short: '3.4'
spark-full: '3.4.3'
java: 11

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}
Comment on lines +51 to +57
57 changes: 57 additions & 0 deletions .github/workflows/iceberg_spark_test_1_9.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

# Runs on main only. Iceberg 1.9 paired with Spark 3.5.
name: Iceberg Spark SQL Tests (Iceberg 1.9)

concurrency:
group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }}
cancel-in-progress: true

on:
push:
branches:
- main
paths:
- "native/**/src/**"
- "native/**/Cargo.toml"
- "native/Cargo.lock"
- "!native/hdfs/**"
- "!native/fs-hdfs/**"
- "common/src/main/**"
- "common/pom.xml"
- "spark/src/main/**"
- "!spark/src/main/scala/org/apache/comet/GenerateDocs.scala"
- "spark/pom.xml"
- "dev/diffs/iceberg/**"
- "pom.xml"
- "rust-toolchain.toml"
- ".github/workflows/iceberg_spark_test_1_9.yml"
- ".github/workflows/iceberg_spark_test_reusable.yml"
- ".github/actions/setup-builder/**"
- ".github/actions/setup-iceberg-builder/**"
workflow_dispatch:

jobs:
iceberg-spark:
uses: ./.github/workflows/iceberg_spark_test_reusable.yml
with:
iceberg-short: '1.9'
iceberg-full: '1.9.1'
spark-short: '3.5'
spark-full: '3.5.8'
java: 17

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}
Comment on lines +51 to +57
Loading
Loading