Skip to content

Commit

Permalink
More updates and improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Omega359 committed Dec 19, 2024
1 parent 29a5202 commit 0cabf77
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/actions/setup-rust-runtime/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,6 @@ runs:
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
echo "RUST_BACKTRACE=1" >> $GITHUB_ENV
echo "CARGO_INCREMENTAL=false" >> $GITHUB_ENV
echo "RUSTFLAGS=-C debuginfo=line-tables-only -C incremental=false" >> $GITHUB_ENV
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -315,10 +315,10 @@ jobs:
with:
submodules: true
fetch-depth: 1
- name: Setup toolchain
run: |
rustup toolchain install stable
rustup default stable
- name: Setup Rust toolchain
uses: ./.github/actions/setup-builder
with:
rust-version: stable
- name: Run sqllogictest
run: |
cd datafusion/sqllogictest
Expand Down
2 changes: 1 addition & 1 deletion ci/scripts/rust_example.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ do
# Skip tests that rely on external storage and flight
if [ ! -d $filename ]; then
cargo run --profile ci --example $example_name
cargo clean -p datafusion-examples
cargo clean --profile ci -p datafusion-examples
fi
done

0 comments on commit 0cabf77

Please sign in to comment.