diff --git a/.github/workflows/integration-ffi.yml b/.github/workflows/integration-ffi.yml index 0d9e72096a8..a56bae8cf56 100644 --- a/.github/workflows/integration-ffi.yml +++ b/.github/workflows/integration-ffi.yml @@ -3,8 +3,7 @@ name: FFI integration on: [push, pull_request] jobs: - # test FFI against the C-Data interface exposed by pyarrow - pyarrow-integration-test: + docker: name: Test runs-on: ubuntu-latest steps: @@ -23,7 +22,6 @@ jobs: uses: actions/cache@v2 with: path: /home/runner/target - # this key is not equal because maturin uses different compilation flags. key: ${{ runner.os }}-amd64-target-maturin-cache - uses: actions/setup-python@v2 with: diff --git a/.github/workflows/integration.yml b/.github/workflows/integration-ipc.yml similarity index 95% rename from .github/workflows/integration.yml rename to .github/workflows/integration-ipc.yml index d82a71b5988..dfb3ddfa7e8 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration-ipc.yml @@ -1,10 +1,10 @@ -name: Integration +name: IPC / Flight integration on: [push, pull_request] jobs: docker: - name: Integration Test + name: Test runs-on: ubuntu-latest steps: - name: Checkout Arrow diff --git a/.github/workflows/integration-parquet.yml b/.github/workflows/integration-parquet.yml index 0bfa715ba32..26352647bdc 100644 --- a/.github/workflows/integration-parquet.yml +++ b/.github/workflows/integration-parquet.yml @@ -4,7 +4,7 @@ on: [push, pull_request] jobs: docker: - name: Integration Test + name: Test runs-on: ubuntu-latest steps: - uses: actions/checkout@v2