Skip to content

Commit

Permalink
ensure int expression
Browse files Browse the repository at this point in the history
  • Loading branch information
paleolimbot committed Jun 6, 2024
1 parent 54b149e commit 7548b36
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ci/scripts/nanoarrow_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ build_dir=${2}/nanoarrow
# integration tests. Testing of the nanoarrow implementation in normal CI is handled
# by github workflows in the arrow-nanoarrow repository.

# Include in the integration test by default if the source directory is present
if [ -z "${ARCHERY_INTEGRATION_WITH_NANOARROW}" ]; then
ARCHERY_INTEGRATION_WITH_NANOARROW="1"
fi

if [ "${ARCHERY_INTEGRATION_WITH_NANOARROW}" -eq "0" ]; then
echo "====================================================================="
echo "Not building nanoarrow because ARCHERY_INTEGRATION_WITH_NANOARROW=0"
Expand Down
5 changes: 5 additions & 0 deletions ci/scripts/rust_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ export RUSTFLAGS="-C debuginfo=1"
export ARROW_TEST_DATA=${arrow_dir}/testing/data
export PARQUET_TEST_DATA=${arrow_dir}/cpp/submodules/parquet-testing/data

# Include in the integration test by default if the source directory is present
if [ -z "${ARCHERY_INTEGRATION_WITH_RUST}" ]; then
ARCHERY_INTEGRATION_WITH_RUST="1"
fi

if [ "${ARCHERY_INTEGRATION_WITH_RUST}" -eq "0" ]; then
echo "====================================================================="
echo "Not building Rust because ARCHERY_INTEGRATION_WITH_RUST=0"
Expand Down

0 comments on commit 7548b36

Please sign in to comment.