Skip to content
Closed
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 0 additions & 1 deletion .asf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ github:
- sql
enabled_merge_buttons:
squash: true
squash_commit_message: PR_TITLE_AND_DESC
merge: false
rebase: false
features:
Expand Down
9 changes: 2 additions & 7 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,8 @@ jobs:
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Install cargo-audit
uses: taiki-e/install-action@c5b1b6f479c32f356cc6f4ba672a47f63853b13b # v2.62.38
uses: taiki-e/install-action@5b5de1b4da26ad411330c0454bdd72929bfcbeb2 # v2.62.29
with:
tool: cargo-audit
- name: Run audit check
# RUSTSEC-2025-0111: tokio-tar is by testcontainers for orchestration
# of testing, so does not impact DataFusion's security
# See https://github.com/apache/datafusion/issues/18288
# NOTE: can remove this once testcontainers releases a version that includes
# https://github.com/testcontainers/testcontainers-rs/pull/852
run: cargo audit --ignore RUSTSEC-2025-0111
run: cargo audit
8 changes: 0 additions & 8 deletions .github/workflows/extended.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,6 @@ on:
# it is not expected to have many changes in these branches,
# so running extended tests is not a burden
- 'branch-*'
# Also run for changes to some critical areas that are most likely
# to trigger errors in extended tests
pull_request:
branches: [ '**' ]
paths:
- 'datafusion/physical*/**/*.rs'
- 'datafusion/expr*/**/*.rs'
- 'datafusion/optimizer/**/*.rs'
workflow_dispatch:
inputs:
pr_number:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeler/labeler-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ execution:

datasource:
- changed-files:
- any-glob-to-any-file: ['datafusion/datasource/**/*', 'datafusion/datasource-avro/**/*', 'datafusion/datasource-arrow/**/*', 'datafusion/datasource-csv/**/*', 'datafusion/datasource-json/**/*', 'datafusion/datasource-parquet/**/*']
- any-glob-to-any-file: ['datafusion/datasource/**/*', 'datafusion/datasource-avro/**/*', 'datafusion/datasource-csv/**/*', 'datafusion/datasource-json/**/*', 'datafusion/datasource-parquet/**/*']

functions:
- changed-files:
Expand Down
17 changes: 2 additions & 15 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -353,19 +353,6 @@ jobs:
with:
save-if: ${{ github.ref_name == 'main' }}
shared-key: "amd-ci-linux-test-example"
- name: Remove unnecessary preinstalled software
run: |
echo "Disk space before cleanup:"
df -h
apt-get clean
rm -rf /__t/CodeQL
rm -rf /__t/PyPy
rm -rf /__t/Java_Temurin-Hotspot_jdk
rm -rf /__t/Python
rm -rf /__t/go
rm -rf /__t/Ruby
echo "Disk space after cleanup:"
df -h
- name: Run examples
run: |
# test datafusion-sql examples
Expand Down Expand Up @@ -425,7 +412,7 @@ jobs:
sudo apt-get update -qq
sudo apt-get install -y -qq clang
- name: Setup wasm-pack
uses: taiki-e/install-action@c5b1b6f479c32f356cc6f4ba672a47f63853b13b # v2.62.38
uses: taiki-e/install-action@5b5de1b4da26ad411330c0454bdd72929bfcbeb2 # v2.62.29
with:
tool: wasm-pack
- name: Run tests with headless mode
Expand Down Expand Up @@ -752,7 +739,7 @@ jobs:
- name: Setup Rust toolchain
uses: ./.github/actions/setup-builder
- name: Install cargo-msrv
uses: taiki-e/install-action@c5b1b6f479c32f356cc6f4ba672a47f63853b13b # v2.62.38
uses: taiki-e/install-action@5b5de1b4da26ad411330c0454bdd72929bfcbeb2 # v2.62.29
with:
tool: cargo-msrv

Expand Down
Loading
Loading