This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
feat: add temporal conversions that don't panic #4511
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration IPC / Flight | |
# on: [push, pull_request] | |
on: [] | |
jobs: | |
docker: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Arrow | |
uses: actions/checkout@v2 | |
with: | |
repository: apache/arrow | |
submodules: true | |
fetch-depth: 0 | |
# this is temporary: once rust is removed from `apache/arrow`, we are good to go. | |
- name: Remove Rust from arrow | |
run: rm -rf rust/ | |
- name: Checkout Arrow Rust | |
uses: actions/checkout@v2 | |
with: | |
path: rust | |
fetch-depth: 0 | |
# Arrow uses cargo build -p arrow-integration-testing | |
# which is incompatible with this. Let's monkey patch it | |
- name: Fix compilation | |
run: cp rust/integration-testing/rust_build.sh ci/scripts/rust_build.sh | |
# unskip many of the tests | |
- name: Test more cases | |
run: git apply rust/integration-testing/unskip.patch | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: "3.10" | |
- name: Setup Archery | |
run: pip install -e dev/archery[docker] | |
- name: Execute Docker Build | |
run: archery docker run -e ARCHERY_INTEGRATION_WITH_RUST=1 conda-integration |