Skip to content

chore(deps): bump the all-other-cargo-deps group in /native with 3 updates #23

chore(deps): bump the all-other-cargo-deps group in /native with 3 updates

chore(deps): bump the all-other-cargo-deps group in /native with 3 updates #23

# 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. Extra coverage for the oldest supported Spark.
name: Spark SQL Tests (Spark 3.4)
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/spark-3.5/**"
- "!spark/src/main/spark-4.0/**"
- "!spark/src/main/spark-4.1/**"
- "!spark/src/main/spark-4.2/**"
- "!spark/src/main/spark-4.x/**"
- "!spark/src/main/scala/org/apache/comet/GenerateDocs.scala"
- "spark/pom.xml"
- "dev/diffs/3.4.3.diff"
- "pom.xml"
- "rust-toolchain.toml"
- ".github/workflows/spark_sql_test_3_4.yml"
- ".github/workflows/spark_sql_test_reusable.yml"
- ".github/actions/setup-builder/**"
- ".github/actions/setup-spark-builder/**"
# On-demand PR runs: a committer adds the `run-spark-3.4-tests` label
# and the workflow runs against the PR's merge ref. Works for forks.
pull_request:
types: [labeled]
workflow_dispatch:
inputs:
collect-fallback-logs:
description: 'Whether to collect Comet fallback reasons from spark sql unit test logs'
required: false
default: false
type: boolean
jobs:
spark-sql:
if: github.event_name != 'pull_request' || github.event.label.name == 'run-spark-3.4-tests'
uses: ./.github/workflows/spark_sql_test_reusable.yml
with:
spark-short: '3.4'
spark-full: '3.4.3'
java: 11
collect-fallback-logs: ${{ github.event.inputs.collect-fallback-logs == 'true' }}