Skip to content

Commit

Permalink
Debug compilation caching (#475)
Browse files Browse the repository at this point in the history
  • Loading branch information
robert3005 authored Jul 17, 2024
1 parent fde193f commit 45ad345
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 42 deletions.
6 changes: 6 additions & 0 deletions .github/actions/setup-python/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,18 @@ runs:
path: ~/.rye
key: "rye-${{ runner.os }}-${{ inputs.rye-version }}"

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11.9'

- name: Rye Install
shell: bash
run: curl -sSf https://rye.astral.sh/get | bash
if: steps.rye-cache.outputs.cache-hit != 'true'
env:
RYE_VERSION: "${{ inputs.rye-version }}"
RYE_TOOLCHAIN_VERSION: "3.11.9"
RYE_INSTALL_OPTION: "--yes"

- name: Rye Shims
Expand Down
1 change: 1 addition & 0 deletions .github/actions/setup-rust/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ runs:
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
echo "CARGO_INCREMENTAL=0" >> $GITHUB_ENV
# echo "CARGO_LOG=cargo::core::compiler::fingerprint=info" >> $GITHUB_ENV

- name: Download flatc
shell: bash
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- uses: ./.github/actions/cleanup

Expand Down
1 change: 1 addition & 0 deletions requirements-dev.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
# all-features: false
# with-sources: false
# generate-hashes: false
# universal: false

-e file:.
-e file:pyvortex
Expand Down
1 change: 1 addition & 0 deletions requirements.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
# all-features: false
# with-sources: false
# generate-hashes: false
# universal: false

-e file:.
-e file:pyvortex
40 changes: 0 additions & 40 deletions vortex-array/src/array/struct_/compress.rs

This file was deleted.

1 change: 1 addition & 0 deletions vortex-datafusion/src/eval.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use datafusion_expr::{Expr, Operator as DFOperator};
use vortex::variants::StructArrayTrait;
use vortex::{
array::{bool::BoolArray, constant::ConstantArray},
compute::compare,
Expand Down

0 comments on commit 45ad345

Please sign in to comment.